点击下拉菜单每次点击都会刷新

时间:2014-02-07 10:50:55

标签: jquery

我有一个网站,其移动版本链接如下,

http://www.aamirarif.com/kashif/nitech_mobile/index.html

我已经使用了JQuery onClick下拉菜单。

当我在移动设备中打开此网站并点击菜单选项时,整个页面会刷新,是否只会出现在菜单下方的下拉菜单中?

有什么问题?任何解决这个问题的方法都将受到高度赞赏。

1 个答案:

答案 0 :(得分:1)

我认为没有必要创建全新的html页面,你可以使用html5 div标签的date-role =“page”属性。像这样的东西

<div id="about" data-role="page">

<div data-role = "content">
put your content here
</div>
and then close the page div
</div>

你可以通过id

在jquery函数中调用它
$('#about')

以这种方式页面不会刷新......