2

假设我有一个链接,比如说,http://www.example.com/index.html#xyz. 当我在浏览器中打开它时它工作正常,但是当我在同一页面上www.example.com/index.html有一个链接定位时,它会通过 ajax 加载一个新页面。#xyzdata-role=content

现在我的查询是,如果我直接访问与 相同的 URL http://www.example.com/index.html#xyz,它会加载www.example.com/index.html而不是特定#xyz页面。

有什么办法可以使这项工作?

注意:#xyz页面内容是动态加载的。

4

1 回答 1

0

您可以尝试添加rel="external"到您的链接,然后就可以了。

例子:

假设您有 2 个 HTML 文件:index.htmlpage.html,并且page.html包含 2 个 jQuery Mobile 页面:#p1#p2.

现在,假设您想#p2通过index.html单击链接来访问<a>

您需要rel="external"按如下方式添加到您的链接:

<a href="page.html#p2" rel="external">GO TO PAGE 2 !</a>

完整示例:

index.html

<!DOCTYPE html>
<html>
<head>    
<meta name="viewport" content="width=device-width, initial-scale=1">

<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>
<script>

</script>
</head>    

<body>

<div data-role="page">      
  <div data-role="content">      
    <h1>INDEX.HTML</h1>

    <!-- YOUR LINK TO ACCESS #P2 IN PAGE.HTML -->
    <a href="page.html#p2" rel="external">GO TO PAGE 2 "#P2" !</a>    
  </div>    
</div>

</body>
</html>

page.html

<!DOCTYPE html>
<html>
<head>

<meta name="viewport" content="width=device-width, initial-scale=1">

<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>

</head>    

<body>

    <!-- PAGE 1 #P1 -->
    <div data-role="page" id="p1">    
        <div data-role="content">
    <h1>PAGE 1</h1>
        </div>
    </div>

    <!-- PAGE 2 #P2 -->
    <div data-role="page" id="p2">
        <div data-role="content">
        <h1>PAGE 2</h1>
        </div>
    </div>
</body>

</html>
于 2012-10-14T23:15:58.223 回答