<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindon(){
var oopp=prompt("打開:","");
if(oopp=null)
{alert("nihao");}
else
{alert("buhao");}}
</script>
</head>
<body>
<form>
<input type="button" value="新窗口打開網站" onclick="openWindon()" />
</form>
</body>
</html>
無論點擊確定還是取消都是彈出“不好”,怎么回事?
2014-09-23
你判斷條件要用==而不是=,==是比較,=是賦值