【发布时间】:2014-08-17 13:32:06
【问题描述】:
我正在 Telerik Tool 中构建一个移动应用程序。在页脚上,我放置了一些图标,例如
联系人、群组、聊天等。当我点击页脚图标时,它会很好地重定向。我有问题
重定向页面后,它不会自行刷新。需要刷新(模拟器
刷新按钮-Telerik 工具)。
<div class="nav" data-id="oneFooter" id="page-location-footer" data-position="fixed">
<ul data-role="listview">
<li>
<table>
<tr>
<td width="35%">
<a href="contacts.html">
<img src="images/user.png" alt="Smiley face"
width="40" height="40">
</a>
</td>
<td width="35%">
<a href="groups.html">
<img src="images/images.jpg" alt="Smiley face"
width="40" height="40">
</a>
</td>
<td width="35%">
<a href="metext.html">
<img src="images/chat.png" alt="Smiley face"
width="40" height="40">
</a>
</td>
<td width="35%">
<a href="social.html">
<img src="images/images1.jpg" alt="Smiley face"
width="40" height="40">
</a>
</td>
</tr>
</table>
</li>
</ul>
</div>
所以我需要的只是将页面从页面重定向到其他页面 onclick of image 并获取
刷新重定向页面。
请多多关照……
【问题讨论】:
-
重定向后为什么需要刷新?
-
"
Questions seeking debugging help ("why isn't this code working?") must include the desired behavior, a specific problem or error and the shortest code necessary to reproduce it in the question itself. Questions without a clear problem statement are not useful to other readers." -
Teemu 先生,我会把这东西放在中间
标签: javascript html telerik