1. 程式人生 > >javaScript防止攔截新窗口打開頁面

javaScript防止攔截新窗口打開頁面

title col type pen 攔截 inpu .org input XML

原文發布時間為:2009-05-04 —— 來源於本人的百度文章 [由搬家工具導入]

兼容IE.FF.GOOGLE。防止拦截。。。。

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>javaScript放拦截新窗口打开页面</title>
</head>

<body>
<a id="tagOpenWin" target="_blank"></a>  
<input   type="button"   value="防止拦截跳转测试" onclick="openwin()">
</body>
</html>

<script   language="JavaScript">  
function   openwin()  
{  
     var obj = document.getElementById("tagOpenWin");  
     obj.href   = "http://hi.baidu.com/handboy";  
     window.open(obj.href);  
}  
</script>  
</body>
</html>

javaScript防止攔截新窗口打開頁面