美文网首页
变量和函数预解析

变量和函数预解析

作者: 栀心_d553 | 来源:发表于2019-12-27 08:23 被阅读0次

变量预解析

    <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>变量和函数预解析</title>
    <script type="text/javascript">
        myalert();//弹出hello!  先使用后定义
        function myalert(){
            alert('hello!');
        }
    </script>
</head>
<body>
    
</body>
</html>

相关文章

网友评论

      本文标题:变量和函数预解析

      本文链接:https://www.haomeiwen.com/subject/loyroctx.html