課程
/前端開發(fā)
/JavaScript
/JavaScript入門篇
怎么顯示不出來界面
2017-03-27
源自:JavaScript入門篇 2-5
正在回答
你打單引號(hào)的時(shí)候注意一下,前面http打過了單引號(hào),你打那個(gè)地址欄后面的單引號(hào)時(shí),光標(biāo)會(huì)自動(dòng)跳到后面,但是此時(shí)單引號(hào)并沒有加上,所以當(dāng)后面有單引號(hào),卻又要加單引號(hào)時(shí),要點(diǎn)3下
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>window.open</title><script type="text/javascript">? function Wopen(){??? window.open('http://idcbgp.cn','_blank','height=600,width=400,top=100,left=0');
? } </script></head><body>??? <input name="button" type="button" onClick="Wopen()" value="點(diǎn)擊我,打開新窗口!" / ></body></html>
上代碼看看。(是“window.open”,不是“windows.open”)
舉報(bào)
JavaScript做為一名Web工程師的必備技術(shù),本教程讓您快速入門
1 回答為什么我顯示找不到網(wǎng)頁 啊
3 回答網(wǎng)頁不顯示的控件
5 回答網(wǎng)頁顯示問題
3 回答為什么沒有顯示網(wǎng)頁?
2 回答不彈出網(wǎng)頁
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2017-04-09
你打單引號(hào)的時(shí)候注意一下,前面http打過了單引號(hào),你打那個(gè)地址欄后面的單引號(hào)時(shí),光標(biāo)會(huì)自動(dòng)跳到后面,但是此時(shí)單引號(hào)并沒有加上,所以當(dāng)后面有單引號(hào),卻又要加單引號(hào)時(shí),要點(diǎn)3下
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>window.open</title>
<script type="text/javascript">
? function Wopen(){
??? window.open('http://idcbgp.cn','_blank','height=600,width=400,top=100,left=0');
? }
</script>
</head>
<body>
??? <input name="button" type="button" onClick="Wopen()" value="點(diǎn)擊我,打開新窗口!" / >
</body>
</html>
2017-03-27
上代碼看看。(是“window.open”,不是“windows.open”)