iframe中如何打开窗口的方法,兼容IE,firefox,chrome,我推荐第二种方法,因为第一种方法有时也是有问题的,用第二种方法时,最好不要使用jquery的trigger方法去触发a标签的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标签
<!-- 做弹出窗口临时用的 -->
<a target="_blank" id="active" href="" onclick="return true;" style="display: none;"></a>
funciton active(){
//触发A标签的href事件
var active = document.getElementById('active');
active.href=result;
active.click();
}
<input type="button" value="submit" onclick="active()" />
注意的地方:
如果是在jquery中ajax中一定需要加async:false,不然就是模式窗口;
中国足彩网信息请查看IT技术专栏