【jquery操作iframe中的元素】jquery操作iframe中的元素和js函数

更新时间:2020-03-25    来源:jquery    手机版     字体:

【www.bbyears.com--jquery】

1、jquery操作iframe中的元素(2种方式)


var str = $(window.frames["iframe"].document).find("#ljiong").html();

var stk = $("#iframe").contents().find("#ljiong").html();

2、操作父界面中的元素(header:为某个元素的id)


$("#header", parent.document).text();

3、js调用iframe中的js函数(2种)


window.frames["ljiong"].window.testIframe2("ljiong");

document.getElementById("ljiong").contentWindow.testIframe2("ljiong");

4、jquery调用iframe的js函数(带参数的会有返回值)


$("#ljiong")[0].contentWindow.testIframe2("ljiong");


5. 调用父页面js函数,直接用:


parent.myFunction();


注意事项:

1、要和所包含的iframe在同一个域名(因为不能跨域)

Jquery取得iframe中元素的几种方法

jquery方法:
在父窗口中操作 选中IFRAME中的所有输入框: $(window.frames["iframeSon"].document).find(":text");
在IFRAME中操作 选中父窗口中的所有输入框:$(window.parent.document).find(":text");
iframe框架的HTML:

1.在父窗口中操作 选中IFRAME中的所有单选钮
$(window.frames["iframe1"].document).find("input[@type="radio"]").attr("checked","true");

2.在IFRAME中操作 选中父窗口中的所有单选钮
$(window.parent.document).find("input[@type="radio"]").attr("checked","true");
iframe框架的:

 

     
      
          
          
      
      
      
      
      
      
      

收集利用Jquery取得iframe中元素的几种方法 :


$(document.getElementById("iframeId").contentWindow.document.body).htm() 

显示iframe中body元素的内容。


$("#testId", document.frames("iframename").document).html();

根据iframename取得其中ID为"testId"元素


$(window.frames["iframeName"].document).find("#testId").html()

作用同上


网上整理到的方法

内容里有两个ifame


leftiframe中jQuery改变mainiframe的src代码:
$("#mainframe",parent.document.body).attr("src","http://www.111cn.net ")
 如果内容里面有一个ID为mainiframe的ifame

IE7中测试通过
在父页面访问Iframe子窗体的txtAddress控件
window.frames["ifrMapCompanyDetails"].document.all("txtAddress").value = "地址" ;
  
在Iframe子窗体1访问父页面的TextBox1控件 , 子窗体1把值赋给子窗体2的某个控件
string strValue = "从子窗体传递给父页面的值" ;
下面是在Page_Load事件里面调用的,当然可以写在javascript脚本里面
this.Response.Write("<script>parent.document.all("TextBox1").value = "" + strValue + "";</script>");
this.Response.Write("<script>if( parent.document.all("TextBox2").value = "0")parent.document.all("TextBox1").value = "44";</script>");
子窗体访问父窗体中的全局变量:
parent.xxx;
在Iframe子窗体1访问子窗体2的txtAddress控件 子窗体1把值赋给子窗体2的某个控件
window.parent.frames["ifrMapCompanyDetails"].document.all("txtAddress").value = "地址" ;
父窗体提交两个Iframe子窗体
window.frames["ifrMapCompanyDetails"].Form1.submit();
window.frames["ifrMapProductInfoDetails"].Form1.submit();
Iframe子窗体 调用父页面的javascript事件
window.parent.XXX()
//父页面调用当前页面中IFRAME子页面中的脚本childEvent
function invokechildEvent()
{ var frm = document.frames["ifrChild1"].childEvent(); }
或者调用当前页面中第一个IFRAME中的脚本childEvent
{ var frm = document.frames[0]; frm.childEvent(); }
//子页面调用父窗体的某个按钮的按钮事件
window.parent.Form1.btnParent.click()
父页面调用子窗体的某个按钮的按钮事件
window.frames["ifrChild1"].document.all.item("btnChild3").click();
//jquery 部分:
在父窗口中操作 选中IFRAME中的所有单选钮
$(window.frames["iframe1"].document).find("input[ at type="radio"]").attr("checked","true");
在IFRAME中操作 选中父窗口中的所有单选钮
$(window.parent.document).find("input[ at type="radio"]").attr("checked","true");

</iframe>

本文来源:http://www.bbyears.com/wangyezhizuo/89614.html

猜你感兴趣