略略略嘻嘻...
function rec(){ ? ?var mymessage=confirm("我是不是最帥的???"); ? ?if(mymessage==true) ? ?{ ? ? document.write("是的~你很帥mua!"); ? ?} ? ?else ? ?{ ? ? ? ?document.write("哼~你騙人...你明明就非常帥!"); ? ?} ?}
function rec(){ ? ?var mymessage=confirm("我是不是最帥的???"); ? ?if(mymessage==true) ? ?{ ? ? document.write("是的~你很帥mua!"); ? ?} ? ?else ? ?{ ? ? ? ?document.write("哼~你騙人...你明明就非常帥!"); ? ?} ?}
2016-02-22
舉報
2016-02-22
<!DOCTYPE html>
<html>
<head>
?? ?<meta charset="UTF-8">
?? ?<title>Document</title>
</head>
<script type="text/javascript">
?? ?function rec(){?? ?
var mymessage=confirm("我是不是最帥的???");?? ?
if(mymessage==true)??? {??? ?
document.write("是的~你很帥mua!");?? ?
}??? else??? {?????? ?
document.write("哼~你騙人...你明明就非常帥!");
??? } ?
}?? ?
</script>
<body>
<input name="button" type="button" onClick="rec()" value="點擊我,彈出對話框;" />
</body>
</html>