问答详情
源自: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 jum(){

        var mayar=confirm("关注JS高级篇");

        if(mayar==true){

            document.write("恭喜你进入年薪百万的节奏!");}

            else{

                document.write("你还是个屌丝。");}

        }

        

</script>

</head>

<body>

<p id="con">JS进阶篇</p>

<form>

    <input type="button" onclick="jum()" value="点击进入"/>

</form>

</body>

</html>


提问者:中国米线 2018-03-18 20:58

个回答

  • 慕粉15755501990
    2018-03-18 21:40:22
    已采纳

    http://img.mukewang.com/5aae6bde00016f8006600415.jpg

    http://img4.mukewang.com/5aae6c3800011e3910360411.jpg

    图中我圈出来的部分,用英文分号就可以了。