Javascript中的脚本执行流程

时间:2015-10-20 01:44:41

标签: javascript execution

$(function() {
    alert("hello World");
});
alert("hello");

输出:

首先“你好”是警报/ ,它在第2行 /然后“hello world”收到警报 我想知道javascript中的执行规则是什么

1 个答案:

答案 0 :(得分:4)

当dom准备就绪时,将执行此块。

$(function() {
    alert("hello World");
});

这类似于

$(document).ready(function(){

});

第二次警报不等待dom准备就绪。

这就是第二次警报首先执行的原因。