Jquerymobile锚标签问题

时间:2012-10-19 05:40:45

标签: jquery asp.net asp.net-mvc jquery-mobile

我正在使用jQuery mobile。并且在其中锚标记总是在请求url之前添加#值。以便网站的第一个默认页面运行,然后在dom中添加下一页。但在我的情况下,锚标签不会添加哈希值。我怎么能添加它们。

这是我的页面主管部分

<head runat="server">
    <title>Index</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
    <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
    <link href="/Content/style.css" rel="stylesheet" type="text/css" />
</head>

提前完成

1 个答案:

答案 0 :(得分:0)

Don't use rel=external attribute with anchor tag, If you are used
You can also use on click event : $.mobile.changePage($("#pageid"), "flip", true, true);
$("#anchortagid").live("click",function(event){
if(event.handled !== true){ 
    $.mobile.changePage("#pageid", {transition: "slide"});

}
   return false;
});