$(function() {
alert("hello World");
});
alert("hello");
输出:
首先“你好”是警报/ ,它在第2行 /然后“hello world”收到警报 我想知道javascript中的执行规则是什么
答案 0 :(得分:4)
当dom准备就绪时,将执行此块。
$(function() {
alert("hello World");
});
这类似于
$(document).ready(function(){
});
第二次警报不等待dom准备就绪。
这就是第二次警报首先执行的原因。