1

在我的 HTML 文件中:

<div data-role="content" id="termsContent">
    <div id="termDiv"></div>
</div>

在我的 js 文件中:

$(function () {
    $("#termsPage").live('pagecreate', function(event,ui){
        $("#termDiv").load("tnc.html").trigger('create');
    });
});

然后,在我的 tnc.html 文件中:

<a href="http://www.xxx.com/usage-terms.html">

我似乎在 Google 中找不到任何关于如何正确加载本地 html 页面的解决方案。有人对此有建议/经验吗?我想直接显示点击的链接。

4

1 回答 1

0

你很接近但还不够。

  1. .trigger('create') 不能在加载函数后使用。加载函数是异步的,所以我们需要等待成功状态来触发 pagecreate。
  2. 按钮示例不会显示,它需要关闭。
  3. 不要使用pagecreate,在这种情况下pagebeforeshow

这是一个工作示例:

索引.html:

<!DOCTYPE html>
<html>
<head>
    <title>jQM Complex Demo</title>
    <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
        <script src="http://www.dragan-gaic.info/js/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 src="index.js"></script>
</head>
<body>
    <div data-role="page" id="index">
        <div data-theme="a" data-role="header">
            <h3>
                First Page
            </h3>
            <a href="#second" class="ui-btn-right">Next</a>
        </div>

        <div data-role="content">
                    <div id="termDiv">

                    </div>
        </div>

        <div data-theme="a" data-role="footer" data-position="fixed">

        </div>
    </div>   
</body>
</html>   

加载.html:

<a href="http://www.google.com" data-role="button" rel="external">Onen link</a>

index.js:

$(document).on('pagebeforeshow', '#index', function(){       
    $("#termDiv").load("load.html", function(){
        $('#index').trigger('create');
    });  
});

我希望这是你一直想要的。

于 2013-02-25T16:19:04.320 回答