问答详情
源自: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=("你是卡西奥佩娅吗?" );
    if(mymessage==true)
    {
     document.write("你是女士!");
    } confirm
    else
    {
        document.write("你是男士!");
    }
  }   
  </script>
</head>
<body>
    <input name="button" type="button" onClick="rec()" value="点击我,弹出确认对话框" />
</body>
</html>

提问者:男神章鱼哥 2019-07-05 11:16

个回答

  • qq_慕仔131450
    2019-07-05 13:24:24
    已采纳

    https://img1.mukewang.com/5d1eded50001c18507730572.jpg

    zhttps://img2.mukewang.com/5d1eded50001d35804560511.jpg你的代码中间多了一个东西



  • qq_慕的地1326435
    2019-09-12 16:29:29

    把document.write改成alert就行了

  • 慕移动5193967
    2019-08-29 17:19:59

    没有用引用confirm

  • CZTXXL
    2019-07-15 19:44:36

    https://img2.mukewang.com/5d2c67100001cce104030245.jpg你要把这里的confirm删掉才可以

  • 男神章鱼哥
    2019-07-05 11:20:49

    <!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("你是女士!");
        } confirm
        else
        {
            document.write("你是男士!");
        }
      }   
      </script>
    </head>
    <body>
        <input name="button" type="button" onClick="rec()" value="点击我,弹出确认对话框" />
    </body>
    </html>我补充了一下也还是没有返回值