0

在我的 jQuery mobile (v 1.2) 网站中,我有几个单独的页面(即每个页面都有一个页眉、内容和页脚)。问题是我无法链接页面。以下行不起作用。 <a href="anotherpage.html">Another Page</a>显示“错误加载页面”。

如果我添加rel="external"<a>元素中,它会起作用。但是,它关闭了通过 Ajax 的自动加载。但我想使用 Ajax 加载以及保持页面分开。只是想知道这是否可能。

代码页 1

<!DOCTYPE html> 
<html>

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <title>Single page template</title> 
    <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> 
    <div data-role="page">
        <div data-role="header">
            <h1>Page 1</h1>
        </div>
        <div data-role="content">   
            <a href="b.html"> click me</a>
        </div>  
        <div data-role="footer">
            <h4>Footer content</h4>
        </div>
        </div>
</body>
</html>

代码页 2

 <!DOCTYPE html> 
 <html>
 <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <title>Single page template</title> 
    <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> 
     <div data-role="page">
         <div data-role="header">
             <h1>Page 2</h1>
         </div>
         <div data-role="content">  
              page 2 content
         </div> 
         <div data-role="footer">
             <h4>Footer content</h4>
         </div>
    </div>
 </body>
 </html>
4

2 回答 2

1

问题是您正在尝试从文件系统加载页面。假设存在安全风险,Chrome 设置会阻止这种情况。

使用 Web 服务器为您的页面提供服务。为此,您可以在 Windows XP Pro 上使用 IIS。

或者

--allow-file-access-from-file您可以使用命令行选项启动 chrome

于 2013-01-24T02:01:04.777 回答
0

我相信你应该给每个 'data-role="page" 和 id 像 "page2 所以实际上它会是:

<div data-role="page" id="page"> <!--Home Page-->
<div data-role="page" id="page2"> <!--2nd Page-->
<div data-role="page" id="page3"> <!--3rd Page-->

我不确定这是否是您在这种情况下要寻找的东西......

于 2013-07-15T15:08:43.830 回答