使用 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>
但是上面的代码显示了应用程序启动时的警报,当我打开页面时它什么也不做。在此先感谢您的帮助。