问答详情
源自:1-1 让你认识JS

为什么都不弹出来?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>我们互动下</title>

<script type = "text/javascript">

    function.window(){

        document.write("JS进阶篇");

        alert("关注JS高级篇");

    }

</script>


</head>

<body>

    <input name="button" type="button" onclick="window()" value="点击我,弹出对话框" />

</body>

</html>


提问者:王_山而 2017-08-10 17:40

个回答

  • 了Lee
    2017-08-10 17:47:38
    已采纳

        function.window() 这里function后面多了个 (.)点

  • 慕无忌326314
    2017-08-14 17:04:54

    函数定义语法 function 函数(){.....}

    另,函数名不能用html关键字(不能用window、top、button、标签名啊……等类似这些)


    所以,可以写成下面这样

     function mytext(){

            document.write("JS进阶篇");

            alert("关注JS高级篇");

        }

    </script>


    </head>

    <body>

        <input name="button" type="button" onclick="mytext()" value="点击我,弹出对话框" />

    </body>

    </html>




  • 游兄
    2017-08-10 17:51:24

    function.window(){     换成    function window(){