window.open打开新窗口报错ie 位指明错误,原因是window没有加引号!
Posted 知了不了了之
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window.open打开新窗口报错ie 位指明错误,原因是window没有加引号!相关的知识,希望对你有一定的参考价值。
function JsMod(htmlurl,tmpWidth,tmpHeight){
htmlurl=getRandomUrl(htmlurl);
var newwin = window.open(htmlurl, "window", "height=" + tmpHeight + ",width=" + tmpWidth);
window.location.href = window.location.href;
}
function setSelectValue(cxxf02id,xmmc){
window.opener.document.getElementById("kch").value = cxxf02id;
window.opener.document.getElementById("kcmc").value = xmmc;
window.opener.fillOtherText();
window.close();
}
以上是关于window.open打开新窗口报错ie 位指明错误,原因是window没有加引号!的主要内容,如果未能解决你的问题,请参考以下文章
window.open(url,name)设置name属性后,在谷歌火狐等浏览器中均可在指定窗口打开,可是为啥在ie中不行