JSON.stringify在IE兼容模式下不起作用,原来是序列化对象是一个easyuiTree的树节点对象,过于复杂的对象
SCRIPT70 权限,问题出现在获取页面iframe时:
var iframeObj=$('table id#right ifram',$('#contentFrame',$(window.parent.document))0].contentWindow.document);
这样得到的iframeObj.length为0。
从网上找到答案,用原生javascript获取元素即可(可能是jquery版本问题),故改为
var iframeObj=$('#contentFrame',$(window.parent.document))[0].contentWindow.document.getElementById('right').getElementsByTagName('iframe');