当前位置: 代码迷 >> JavaScript >> window.opener.document 为空或不是对象解决方案
  详细解决方案

window.opener.document 为空或不是对象解决方案

热度:407   发布时间:2012-06-08 12:55:24.0
window.opener.document 为空或不是对象
var a = window.opener.document.getElementById("MainContent_btnImportWebSite").style.display='none' ; 
为什么没效果

var a = window.opener.document.getElementById("MainContent_txtSKU").value='xxx';
一样也是报错 
信息为:window.opener.document 为空或不是对象


------解决方案--------------------
var a = document.getElementById("MainContent_btnImportWebSite").style.display='none'
你是想干什么啊。。前面为什么要加 window.opener.
------解决方案--------------------
window.opener.document.getElementById("MainContent_txtSKU").value='xxx';
window.opener.document.getElementById("MainContent_btnImportWebSite").style.display='none' ; 
直接这么写有错?
------解决方案--------------------
iframe 是 window.parent.document
  相关解决方案