我项目有一个页面a.aspx,里面有一个iframe
嵌入假如是这个网址:http://q.cnblogs.com/
<iframe id="cwin" src="http://q.cnblogs.com/" scrolling="no" height="100%" frameborder="1" marginheight="0" marginwidth="0"></iframe>
上面地址的高度怎么获取,求大牛来解决
function pseth() {
var iObj = parent.parent.document.getElementById('frame_content');
iObjH = parent.parent.frames["frame_content"].frames["iframeC"].location.hash;
iObj.style.height = iObjH.split("#")[1]+"px";
}
parent.parent这句话我在firefox试过。。不对哦。。返回是值agent.html,,,期望值应该main.html才对
郁闷。。