如何實(shí)現(xiàn)彈兩個(gè)窗口
想測(cè)試name參數(shù)一致及不一致的現(xiàn)象,從網(wǎng)上百度window.open()詳解
http://www.cnblogs.com/stswordman/archive/2006/06/02/415853.html
想實(shí)現(xiàn)兩個(gè)彈窗,結(jié)果一直沒有成功。請(qǐng)老師們指教
<!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', 'newwindow', 'height=100, width=100, top=0,left=0,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no')?
//寫成一行?
window.open ('http://www.baidu.com', '', 'height=100, width=100, top=100, left=100,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no')?
//寫成一行?
?}?
</script>
</head>
<body>
? ? <input name="button" type="button" onClick="Wopen()" value="點(diǎn)擊我,打開新窗口!" / >
</body>
</html>
2016-02-14
沒錯(cuò)吧?我復(fù)制你的代碼彈出來的是兩個(gè)窗口
2016-07-22
能無限重復(fù)彈出的樣子
2016-07-22
點(diǎn)一次彈出一個(gè),最后一共彈出兩個(gè)網(wǎng)頁