gpt4 book ai didi

javascript - jquery mobile - loadPage 问题

转载 作者:行者123 更新时间:2023-11-30 05:45:03 36 4
gpt4 key购买 nike

我无法让 jQuery-mobile 加载页面以将我的下一页加载到“contentdiv

我已将我的页面缩减为基本内容,这是代码。

index.html:

<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>JQuery Mobile Load Page Test</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
</head>
<body>

<div data-role="page">

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

<input type="button" id="nextPage" data-inline="true" value="Load Second Page"/>

</div> <!-- /content -->

</div> <!-- /page -->

<script>

$( "#nextPage" ).on( "click", function()
{
$.mobile.loadPage("nextPage.html",
{
pageContainer: $('#containerTest')
});
});

</script>

</body>
</html>

nextPage.html

<div data-role="page">

<p>this is the next page</p>

</div> <!-- /page -->

最佳答案

我不认为你可以在另一个页面中加载一个页面,你可以尝试这样的事情:

$(document).on('pageinit', function(){
$( "#nextPage" ).on( "click", function(){
$('#containerTest').load('nextPage.html [data-role="content"]',function(){
$('.ui-page-active').trigger('create');
});
});
});

这将从容器内的页面 2 加载内容 ( <div data-role="content"> ),然后它会触发原始页面上的创建事件以增强加载的内容

关于javascript - jquery mobile - loadPage 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18450137/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com