為什么我的點完確定不提示你是女士
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>confirm</title>
? <script type="text/javascript">
? function sex(){
? ? ? var mymessage=confirm("你是女士嗎?");
? ? ? if(mymesssage==true){
? ? ? ? ? document.write("你是女士!");
? ? ? }else{
? ? ? ? ? document.write("你是男士!");
? ? ? }
? }
? </script>
</head>
<body>
? ?<input name="button" type="button" onclick="sex()" value="點擊我彈出確認對話框"/>
</body>
</html>
2017-09-02
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>confirm</title>
?
</head>
<body>
? ?<input name="button" type="button" onclick="sex()" value="點擊我彈出確認對話框"/>
? ??
? ? <script type="text/javascript">
? ? ? function sex(){
? ? ? ? ? var mymessage=confirm("你是女士嗎?");
? ? ? ? ?if(mymessage==true){
? ? ? ? ? ?document.write("您是女士!")
? ? ? ? ?}else{
? ? ? ? ? document.write("您是女士!")
? ? ? ? ?}
? ? ? }
? </script>
</body>
</html>
不知道為何重寫一遍就行了
2017-09-11
你if里面的mymessage多打了一個s,所以出不來