js 强制弹出窗口代码研究-又一款代码
更新时间:2010年03月20日 19:40:38 作者:
我在 IE8 中测试起作用,但在 Firefox 3.5 中被拦截。
复制代码 代码如下:
<script language="JavaScript">
var paypopupURL = "https://www.jb51.net";
var randkey = '13'; //bypass IE functions
function setupActiveX(){
document.write(' <INPUT ID="autoHit" TYPE="TEXT" ONKEYPRESS="showActiveX()">');
}
function openActiveX(){
document.getElementById('autoHit').fireEvent("onkeypress",(document.createEventObject().keyCode=escape(randkey).substring(1)));
}
function showActiveX(){
var newWindow=window.open(paypopupURL,'abcdefg','width=200,height=200,top=50,left='+(screen.width-250));
}
setupActiveX();
openActiveX();
self.focus();
</script>
相关文章
基于innerHTML中的script广告实现代码[广告全部放在一个js里面]
基于innerHTML中的script广告实现代码 ,主要是为了统一管理广告,但因为innerHtml的script的一些问题不建议script的代码下面是一些测试。2009-09-09
最新评论