Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果您使用的是 jQuery mobile,则不应使用$(document).ready()use$(document).bind('pageinit')代替。
$(document).ready()
$(document).bind('pageinit')
$(document).raedy()加载第一页时仅触发一次事件。任何后续页面都使用 AJAX 调用加载,因此没有 document.ready 事件。
$(document).raedy()