$('BODY',WINDOW.FRAMES[0].DOCUMENT).APPEND($TESTSHOW) BUG
Reported by: anonymous Owned by:
Priority: undecided Milestone: None
Component: unfiled Version: 1.8.2
Keywords: Cc:
Blocking: Blocked by:
Description
<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <!-- the same bug at jquery-1.6.3.min.js --> <!-- <script src="jquery-1.6.3.min.js" type="text/javascript" ></script> --> <script src="jquery-1.8.2.min.js" type="text/javascript" ></script> <script type="text/javascript"> $(function(){
var $testShow =$('<span>append jquery object</span>'); var testString ='<span>append String</span>'; $('body',window.frames[0].document).append(testString); try{
$('body',window.frames[0].document).append($testShow);
}catch(e){
alert(e.message); 参数无效
}
}); </script>
</head> <body> <iframe src=""></iframe> </body> </html>
分享到:
相关推荐
- 如果一个页面中包含多个iframe,可以通过索引访问特定的iframe,例如`window.frames[0]`表示第一个iframe。 #### 示例代码 假设我们有一个父页面`parent.html`,其中嵌入了一个名为`childFrame`的iframe,该...
- **使用 jQuery**:jQuery 的 `$` 函数可以用来封装这个过程,例如,`$(window.frames["iframeSon"].document)` 将选取 iframe 中的所有文本输入框:`$(window.frames["iframeSon"].document).find(":text")`。...
父窗口中操作iframe:$(window.frames[“iframeChild”].document) //假如iframe的id为iframeChild 在子窗口中操作父窗口:$(window.parent.document) 接下来就可以继续获取iframe内的dom了。 获取iframe内的dom对象...
例如,在一个包含多个框架(frames)的页面结构中,可以通过调整`window.location.href`前面的修饰词来控制不同框架内的页面跳转或刷新。 - **"window.location.href"**:表示当前页面自身的跳转。 - **"parent....
$(window.frames["iframeChild"].document).find("input[@type='radio']").attr("checked", "true"); ``` 同样地,如果是在`iframe`内操作,要选中父窗口中的所有单选按钮,可以写成: ```javascript $(window....
资源分类:Python库 所属语言:Python 资源全名:audio.frames-2.3.1.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
DOM方法:父窗口操作IFRAME:window.frames[“iframeSon”].documentIFRAME操作父窗口: window.parent.documentjquery方法:在父窗口中操作 选中IFRAME中的所有输入框: $(window.frames[“iframeSon”].document)....
本文将深入讲解如何使用`window.frames`,递归函数以及函数上下文来实现这一功能。`window.frames`属性是一个集合,它包含了当前窗口(包括子`iframe`)的所有窗口对象。这个属性可以帮助我们遍历所有嵌套的`iframe`...
* 改变框架的导航:可以使用 `window.frames[0].location="1.html"` 来改变框架的页面。 * 访问框架中的 JavaScript 变量:可以使用 `window.frames["frameName"].variable` 来访问框架中的 JavaScript 变量。 * ...
window.parent.frames["ifrChild1"].document.frames[0].childEvent(); // 直接通过frames调用 window.parent.frames["ifrChild1"].childEvent(); // 或者直接调用子页面中的方法 window.parent.frames["ifrChild1...
window.postMessage的功能是允许程序员跨域在两个窗口/frames间发送数据信息。基本上,它就像是跨域的AJAX,但不是浏览器跟服务器之间交互,而是在两个客户端之间通信。让我们来看一下window.postMessage是如何工作...
- `window.parent.frames[1]`:使用索引访问,`1`表示第二个框架,因为数组索引是从0开始的。 - `window.parent.frames.bottom` 和 `window.parent.frames["bottom"]`:使用名称访问,`bottom`是子框架的名称。 - `...
1.在父窗口中操作 选中IFRAME中的所有单选钮$(window.frames[“iframe1”].document).find(”input[@type=’radio’]“).attr(”checked”,”true”); 2.在IFRAME中操作 选中父窗口中的所有单选钮$(window.parent....
本文将详细介绍 JavaScript 中的 window 对象的各个属性和方法,包括 status、statusbar、defaultstatus、location、locationbar、self、name、closed、frames、frames.length、length、document、history、...
例如,`window.frames[0]`或`window.frames['frameName']`可以引用到指定的框架。每个框架都有自己的window对象,因此可以对其进行各种操作,如修改其document内容,改变location以加载新的页面。 1. **父框架引用...