码迷,mamicode.com
首页 > Web开发 > 详细

js的执行顺序

时间:2014-12-10 00:24:08      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   java   on   div   log   

js是顺序执行的,但是在一个<script></script>标签中,后面的函数会预加载。如:

<script type="text/javascript">
   
    try{
       fun();
    }catch(e){
       alert("error"); 
    }
    
    function fun(){
        alert("houhou");
    }

</script>
输出为 houhou

如果是这样:

<script type="text/javascript">
    try{
       fun();
    }catch(e){
       alert("error"); 
    }
</script>

<script type="text/javascript">
    
    function fun(){
        alert("houhou");
    }

</script>
输出的就是  error

 

js的执行顺序

标签:style   blog   io   color   sp   java   on   div   log   

原文地址:http://www.cnblogs.com/xiaoyueer/p/4154432.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!