问答详情
源自:2-3 JavaScript-确认(confirm 消息对话框)

弹不出对话框

<!DOCTYPE HTML>

<html>

<head>

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

<title>confirm</title>

  <script type="text/javascript">

  function rec(){

    var mymessage=confirm("你的性别!");

    if(mymessage==true)

    {

    document.write("你是女士!");

    }

    else

    {

        document.write("你是男士!");

    }

  }    

  </script>

</head>

<body>

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

</body>

</html>

给位帮忙看看我哪写错了,为什么弹不出对话框,每次一点击“点击我,弹出对话框”就直接出“你是男士”这是为什么

提问者:qq_Absurdyears_0 2017-03-02 18:03

个回答

  • 学习js
    2017-03-02 18:20:09
    已采纳

    代码没问题啊,你在其他浏览器跑跑看,我在chrome上跑了没问题

  • 24k纯帅哈哈哈
    2017-03-02 18:18:28

    没看出你那里写错了,应该是没有问题的 换个浏览器试试