iframe获取document问题,火狐下获取contentWindow.document失效 100
vartableStr=$("#"+tableId).html();varweburl=url+'/common/export.asmx/htmlTableExportE...
var tableStr = $("#" + tableId).html();
var weburl = url + '/common/export.asmx/htmlTableExportExcel';
var str = "<iframe src='about:blank' name='hiddeFrame' id='hiddeFrame' ></iframe><form id='hiddeform' method='post' target = 'hiddeFrame' action=" + weburl + " style='display: none'><input type='hidden' name='tableStr' id='tableStr' value='" + tableStr + "' /><input type='hidden' name='FileName' id='FileName' value='" + excelName + "' /><input type='submit' name='submit' style='display:none'/> </form>";
$("#hiddediv").html(str);
document.getElementById("hiddeform").submit.click();
setTimeout(function () {
var frame1 = document.getElementById("hiddeFrame").contentWindow.document; //获取到iframe里面的html元素
var data = eval(frame1.body.innerHTML);
if (data.Rows.length > 0) {
window.top.location = url + data.Rows[0].url;
}
}, 1000);
iframe获取document问题,ie下可以,火狐下获取contentWindow可以,获取contentWindow.document失效,form内target = 'hiddeFrame'去掉的话,获取contentWindow.document是成功的 展开
var weburl = url + '/common/export.asmx/htmlTableExportExcel';
var str = "<iframe src='about:blank' name='hiddeFrame' id='hiddeFrame' ></iframe><form id='hiddeform' method='post' target = 'hiddeFrame' action=" + weburl + " style='display: none'><input type='hidden' name='tableStr' id='tableStr' value='" + tableStr + "' /><input type='hidden' name='FileName' id='FileName' value='" + excelName + "' /><input type='submit' name='submit' style='display:none'/> </form>";
$("#hiddediv").html(str);
document.getElementById("hiddeform").submit.click();
setTimeout(function () {
var frame1 = document.getElementById("hiddeFrame").contentWindow.document; //获取到iframe里面的html元素
var data = eval(frame1.body.innerHTML);
if (data.Rows.length > 0) {
window.top.location = url + data.Rows[0].url;
}
}, 1000);
iframe获取document问题,ie下可以,火狐下获取contentWindow可以,获取contentWindow.document失效,form内target = 'hiddeFrame'去掉的话,获取contentWindow.document是成功的 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏100(财富值+成长值)
2个回答
展开全部
尊敬的用户,您好!很高兴为您答疑。
target = 'hiddeFrame'的意思是在名称叫做hiddeFrame的框架中开启,那么contentWindow.document的意思是在名叫contentWindow的框架中获取document对象。
希望我的回答对您有所帮助,如有疑问,欢迎继续咨询我们。
target = 'hiddeFrame'的意思是在名称叫做hiddeFrame的框架中开启,那么contentWindow.document的意思是在名叫contentWindow的框架中获取document对象。
希望我的回答对您有所帮助,如有疑问,欢迎继续咨询我们。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
要操作iframe框架的话,用jquery更方便一些
我给你列举些实例:
$("#myiFrame")[0].contentWindow;//jquery里获取指定框架的window对象
//读取iframe框架内文本框的值:
$("#myiFrame")[0].contentWindow.$("#id").val();
//读取iframe框架内指定ID的标签的html内容:
$("#myiFrame")[0].contentWindow.$("#id").html();
//用jquery获取iframe子框架里指定的标签内容
var t=$("#IFrame").contents().find("#angel").val();
//用jquery获取iframe子框架里的按钮,并激活其“点击”事件:
$("#IFrame").contents().find("#Do").click();
上面的这些代码都是在网页链接这里找到的
另外你的代码里,用到了Rows,这个属性是经常用在表格里的,你用这样的方法来获取url不太正确。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询