gpt4 book ai didi

jquery - $.mobile.changePage 不适用于 Phonegap?

转载 作者:行者123 更新时间:2023-12-01 06:30:13 26 4
gpt4 key购买 nike

我对 $.mobile.changePage 方法有疑问,事实上,当我使用phonegap 转换应用程序时,该方法不起作用。

这是我的页面.html 的代码。有解决办法吗?

页面索引.html

<!DOCTYPE html>
<html>
<head>
<title>Prova </title>

<link rel="stylesheet" href="css/jquery.mobile-1.0b1.css" />
<script src="js/jquery-1.6.1.min.js"></script>
<script src="js/jquery.mobile-1.0b1.js"></script>

<script>
$(document).ready(function() {

$('#linkpersonale').click(function() {
$.mobile.changePage("#personale", null, true, true);
});

});
</script>


</head>
<body>

<div data-role="page" id="home">

<header data-role="header">
<h1>Prova Page1</h1>
</header>

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


<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="b" data-counttheme="d">
<li>
<a class="ui-link-inherit" id="linkpersonale">
<h3 class="ui-li-heading">Personale</h3>
<p class="ui-li-desc">...</p>
</a>
</li>
</ul>

</div>


<footer data-role="footer" data-role="footer" data-id="footer-nav" data-position="fixed">
<div data-role="navbar" id="navbar_home">
<ul>
<li><a href="#home" data-icon="home" data-iconpos="top" data-theme="a">Home</a></li>
</ul>
</div>
</footer>

</div>

</body>
</html>

页面personale.html

<!DOCTYPE html>
<html>
<head>
<title>Prova </title>

</head>
<body>


<div data-role="page" id="personale">

<header data-role="header">
<h1>Prova Pag2</h1>
</header>


<div data-role="content">

<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="b" data-counttheme="d">
<li>
<a class="ui-link-inherit" href="#">
<h3 class="ui-li-heading">Etc etc</h3>
<p class="ui-li-desc">...</p>
</a>
</li>

</ul>

</div>

<footer data-role="footer" data-role="footer" data-id="footer-nav" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#" data-icon="home" data-icon="home" data-iconpos="top" data-theme="a" data-transition="slide">Home</a></li>
</ul>
</div>
</footer>

</div>

</body>
</html>

有什么建议吗? PS:抱歉我的英语不好,我是意大利人;)

最佳答案

PhoneGap 在这里是一个转移注意力的东西。您应该将其作为普通的旧 jQM 代码进行测试,您会发现它在那里也不起作用。这是因为您在不包含 div 的 HTML 文件 (index.html) 中引用了该 div

我会尝试在 personale.html 上调用 changePage(),而不是 #personale

来自 $.mobile.changePage() 上的文档:

The to argument can accept either a string (such as a file url or local element's ID)...

关于jquery - $.mobile.changePage 不适用于 Phonegap?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6747105/

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