大神帮我看看哪里错了,取消还是确定,都显示我是女士。
<!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>
if判断条件里面 “==”表示等于,“=”表示赋值,应该这么写:
if( mymessage == true ){
}