是否可以在执行第一个DOM就绪后手动调用DOM,如:
$(document).ready(function() {
alert('Alohaaa!');
});
$(document).ready();
答案 0 :(得分:3)
不,不是这个事件。但你可以这样做:
$(document).on("mycustomevent", function() {
alert("Alohaa!");
});
然后,只要需要:
$(document).trigger("mycustomevent");
答案 1 :(得分:2)
function myReadyFunction(){
alert('ok');
}
$(myReadyFunction); //this is fired on document ready
然后在需要时拨打myReadyFunction();
。