gpt4 book ai didi

javascript - 警报 ("");使用 PhoneGap 和 jQuery 的函数

转载 作者:行者123 更新时间:2023-11-28 16:18:05 25 4
gpt4 key购买 nike

使用 jQuery Mobile,我希望在用户打开页面时显示警报

<div data-role="page" id="page3">
<div data-role="header">
<h1>Page Three</h1>
</div>
<div data-role="content">
<script>alert('How are you');</script>
</div>
<div data-role="footer">
<h4>Page Footer</h4>
</div>
</div>

但是上面的代码显示了应用程序启动时的警报,当我打开页面时它什么也不做。预先感谢您的帮助。

最佳答案

使用 jQueryMobile 有 specific events了解页面何时加载。

您应该尝试以下操作(将其放在 head 元素中,主体之前):

<script>
$('#page3').live('pageshow', function() {
alert('Page ' + $(this).attr('id') + ' about to be shown');
});
</script>

您还可以处理“pagebeforeshow”/“pagecreate”事件。

关于javascript - 警报 ("");使用 PhoneGap 和 jQuery 的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10763833/

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