iframe中如何打開窗口的方法,兼容IE,firefox,chrome,我推薦第二種方法,因?yàn)榈谝环N方法有時(shí)也是有問題的,用第二種方法時(shí),最好不要使用jquery的trigger方法去觸發(fā)a標(biāo)簽的click事件。
方法一:使用表單
openBlankWindow('http://www.bing.cn','contactus');
}
//open blank window
function openBlankWindow(sHref,objValue) {
document.getElementById("msgTxt").innerHTML="<form id='hiddenlink' action='"+sHref+"' target='_blank'>
<input name="names" value='"+objValue+"' /form>";
var s=document.getElementById("hiddenlink");
s.submit();
}
<input type="button" value="submit" onclick="btuFun()" />
方法二:使用a標(biāo)簽
<!-- 做彈出窗口臨時(shí)用的 -->
<a target="_blank" id="active" href="" onclick="return true;" style="display: none;"></a>
funciton active(){
//觸發(fā)A標(biāo)簽的href事件
var active = document.getElementById('active');
active.href=result;
active.click();
}
<input type="button" value="submit" onclick="active()" />
注意的地方:
如果是在jquery中ajax中一定需要加async:false,不然就是模式窗口;
更多信息請查看IT技術(shù)專欄