实践使用的jQuery获取框架内容的方法

简介:

 

沫沫金分享利用Jquery取得iframe中元素的几种方法 :

document.getElementById方式: Js代码  
  1. $(document.getElementById('iframeId').contentWindow.document.body).htm()  
$(document.getElementById('iframeId').contentWindow.document.body).htm()

 显示iframe中body元素的内容。

jQuery双参数法:Js代码   
  1. $("#testId", document.frames("iframename").document).html();  
$("#testId", document.frames("iframename").document).html();

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

jQuery的find方法获取法:Js代码   
  1. $(window.frames["iframeName"].document).find("#testId").html()  
$(window.frames["iframeName"].document).find("#testId").html()

 

2012卖的最好的粽子

在IFRAME里取得父窗口的某个元素的值,使用jQuery

只好用DOM方法与jquery方法结合的方式实现了,dom很强大的

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框架的:<iframe src="test.html" id="iframe1" width="700" height="300" frameborder="0" scrolling="auto"></iframe>
 


本文转自 沫沫金 51CTO博客,原文链接:http://blog.51cto.com/zl0828/902767,如需转载请自行联系原作者
相关文章
|
17天前
|
JavaScript
jQuery 遍历 方法
jQuery 遍历 方法
28 5
|
3天前
|
XML JavaScript 数据格式
jquery中html()方法的使用
jquery中html()方法的使用
10 1
|
11天前
|
前端开发 JavaScript
jQuery - AJAX load() 方法
jQuery load() 方法是简单但强大的 AJAX 方法。
37 6
|
21天前
|
JavaScript
jQuery parentsUntil() 方法
jQuery parentsUntil() 方法
25 10
|
15天前
|
JavaScript 前端开发
jQuery 杂项方法
jQuery 杂项方法
26 2
|
17天前
|
JavaScript
jQuery 效果 方法
jQuery 效果 方法
13 3
|
19天前
|
JavaScript 前端开发
jQuery - noConflict() 方法
jQuery - noConflict() 方法
18 5
|
15天前
|
JSON 前端开发 JavaScript
jQuery AJAX 方法
jQuery AJAX 方法
26 1
|
17天前
|
XML 前端开发 JavaScript
jQuery HTML / CSS 方法
jQuery HTML / CSS 方法
10 2
|
21天前
|
JavaScript
jQuery parents() 方法
jQuery parents() 方法
17 7