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

下面代码这里为什么alert弹不出来?

<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 jump(){

        var mymessage=confirm("JS进阶篇");

        if(mymessage==true){

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

        }

        else{

            null;

        }

    }

</script>

    


</head>

<body>

<form>

    <input type="buttom" value="点击这儿" onclick="jump()"/>

</form>

</body>

</html>


提问者:敬亭山仁波切 2016-03-05 13:37

个回答

  • qq_动感地带_04002463
    2016-10-27 14:47:46

    buttom拼写错了,是button

  • Jack_zz
    2016-03-05 13:47:20

     var mymessage=confirm("JS进阶篇");

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

    后面这2个用的是中文的冒号 应该改为英文的冒号