任務(wù)中窗口寬高的設(shè)置中為什么width和heigth之間加逗號和不加逗號打開的窗口大小不一樣
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>window對象</title>
<script type="text/javascript">
alert("歡迎來到慕課網(wǎng)!")
function myFunction()
{
??? window.open('http://idcbgp.cn','_blank','width=600, height=400')
? //? window.open('http://idcbgp.cn','_blank','width=600 height=400')
}
</script>
</head>
<body>
<form>
<input type="button" value="點擊我,打開新窗口" onclick="myFunction()" />
</form>
</body>
</html>
2017-11-08
我剛才試了一下,在我的環(huán)境下是同樣顯示的,可能是不同瀏覽器對錯誤語法處理的不一樣吧
2018-05-03
嗯,謝謝
2018-01-11
想問下'_blank'這個是什么意思?
2017-11-08
在我電腦上效果也是一樣的,你換一個瀏覽器試試