學(xué)習(xí)筆記。。。。。。。。。。。
<!DOCTYPE html>
<html>
?<head>
? <title> fuck window </title> ?
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> ??
? <script type="text/javascript"> ?
? ? function openWindow(){
? ? ? ? var wid=confirm("要不要打開新窗口蠻?");?
? ? ? ? if(wid==true){
? ? ? ? ? ? var url=prompt("確認(rèn)網(wǎng)址哦",'http://idcbgp.cn');
? ? ? ? ? ? if(url===null){
? ? ? ? ? ? ? ? alert("你取消個毛線");
? ? ? ? ? ? }else{
? ? ? ? ? ? ? ?window.open(url,'_target','width=600,height=450,left=400,top=100');?
? ? ? ? ? ? }
? ? ? ? }else{
? ? ? ? ? ? alert("不打開就算了嘛");
? ? ? ? }
? ? }
? ??
? ??
? </script>?
?</head>?
?<body>?
? ? ? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>
2015-12-16
ok!