如何防止使用JavaScript弹出窗口?

无论如何,我可以使用JavaScript阻止来自其他网站(iframe)的弹出窗口吗?

示例:我有一个网站,该网站可链接到其他几个网站.其中之一具有这样的弹出脚本:

<script type="text/javascript">
var popunder=new Array()
popunder[0]="http://www.target.com"

//Specify the width and height of new popunder window (in pixels).
var width = '700'; 
var height = '450';

//these are obvious variables. set "yes" or "no".
var p = 'scrollbars=yes, resizable=yes, toolbar=yes,' + 'menubar=yes, status=yes, location=yes, left=85, top=20, height=' + height + ',width=' + width;

// Load new PopUnder only once per browser session? (0=no, 1=yes)
// Putting 0 will cause the Popunder to load every time page is loaded
// Specifying 1 will cause it to load only once per session
var one_time=0

// That's it! Don't edit the code below unless you're really good. :-P //

function get_cookie(Name) {
  var search = Name + "="
  var returnvalue = "";
  if (document.cookie.length > 0) {
    offset = document.cookie.indexOf(search)
    if (offset != -1) { // if the cookie exists
      offset += search.length
      //set the index of beginning value
      end = document.cookie.indexOf(";", offset);

    if (end == -1) // set the index of the end of cookie value
         end = document.cookie.length;
         returnvalue = unescape(document.cookie.substring(offset, end))
      }
   }
  return returnvalue;
}

function loadornot(){
if (get_cookie('popunder')==''){
load_pop_power()
document.cookie="popunder=yes"
}
}

function load_pop_power(){
win2 = window.open(popunder[Math.floor(Math.random()*(popunder.length))], "bw", p)
win2.blur()
window.focus()
}

if (one_time==0)
load_pop_power()
else
loadornot()
</script>

如果不能阻止此弹出窗口,并且用户在firefox或IE上的安全性设置较低.

我有事.网站上的iframe:(iframe.php)

<iframe src="http://friend.com/pop.php"></iframe>

我应该在iframe.php页面上做什么以防止弹出窗口?

解决方法:

这是不可能的. wdm是正确的.但此处提供了更详细的答案.

How to block pop-up coming from iframe?

上一篇:我可以将值从窗体传递到弹出窗口,根据传递的内容显示内容,然后传递回值吗?


下一篇:AF(操作者框架)系列(3)-创建第一个Actor的程序