我很好奇使用 jQuery 和 jQuery Mobile 时首先触发哪个事件。
奇怪的是,我得到的第一个控制台输出是pagebeforecreate
thendocument ready
和 then onload
。
我想知道在这些事件之前是否有任何其他事件被触发。
$('html').bind('pagebeforecreate',function(event) {
console.log("pagebeforecreate");
});
$(document).ready(function() {
console.log("document ready");
});
window.onload = function(){
console.log("onload");
};