`
siruoxian
  • 浏览: 237958 次
  • 性别: Icon_minigender_2
  • 来自: 北京
社区版块
存档分类
最新评论

document.frames('subFrame').setCurrentAttachmentList();在FF下无效

 
阅读更多

document.frames('subFrame').setCurrentAttachmentList();

替换成

 document.getElementById('subFrame').contentWindow.setCurrentAttachmentList();

其中subFrame为iframe

setCurrentAttachmentList();为自定义函数

分享到:
评论

相关推荐

    document.frames在非IE浏览器中的解决办法

    frame.document.body.innerHTML = "This is the new content."; } ``` - **child.html**: ```html <!DOCTYPE html> <title>Child Page Initial Content ``` 在这个例子中,当点击...

    Python库 | audio.frames-2.3.1.tar.gz

    资源分类:Python库 所属语言:Python 资源全名:audio.frames-2.3.1.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059

    javascript 获取iframe里页面中元素值的方法

    IE方法:document.frames[‘myFrame’].document.getElementById(‘test’).value; 火狐方法:document.getElementById(‘myFrame’).contentWindow.document.getElementById(‘test’).value; IE、火狐方法: 代码...

    快速获取/设置iframe内对象元素的几种js实现方法

    1、IE专用(通过frames索引形象定位): document.frames[i].document.getElementById(‘元素的ID’); 2、IE专用(通过IFRAME名称形象定位): document.frames[‘iframe的name’].document.getElementById(‘元素的ID’...

    SAS.Publishing.Getting.Started.with.SAS.AF.and.Frames.Jun.2006.rar

    《SAS.Publishing.Getting.Started.with.SAS.AF.and.Frames.Jun.2006》这本书是SAS用户入门的宝贵资源,尤其对于想要掌握SAS应用框架(SAS AF)以及数据帧(Frames)的使用者来说,具有极高的学习价值。SAS AF是SAS...

    js处理iframe的系列问题

    window.parent.frames["ifrChild1"].document.frames[0].childEvent(); // 直接通过frames调用 window.parent.frames["ifrChild1"].childEvent(); // 或者直接调用子页面中的方法 window.parent.frames["ifrChild1...

    iframe读取document出现拒绝访问

    iframe.document出现拒绝访问。 threw an exception of type 'System.UnauthorizedAccessException' dynamic {System.UnauthorizedAccessException}

    使两个iframe的高度与内容自适应,且相等

    ”TxtBox”> <iframe frameborder=”0″...document.frames[‘news2’].document.body.scrollHeight) document.all.news1.height=document.frames[‘news1’].document.body.scrollHeight;if(document.frames[‘n

    iframe框架\JS获取iframe元素

    alert(document.frames["iName"].document.getElementsByTagName('h1')[0].firstChild.data); ``` 需要注意的是,在某些情况下,上述代码可能不会立即生效,因此通常会在`window.onload`事件中执行相关操作,确保...

    5. Frames_matlab_aware1eg_

    在FEM分析后,我们通常关心节点的位移和边界条件下的反力。 5. "solution.m":这是整个问题的求解程序,可能包含了调用上述函数并整合结果的代码。 通过这些文件,我们可以学习到如何使用MATLAB编写代码来实现FEM...

    C#_WebBrowser_网页操作

    webBrowser1.Document.Window.Frames["frameMain"].Document.getElementById("txtXingming").innerText = "521656"; ``` #### 下拉框赋值 对于下拉框的选择,可以通过以下方式设置: ```csharp HtmlDocument doc = ...

    javascript实现网页子页面遍历回调的方法(涉及 window.frames、递归函数、函数上下文)

    var iFocus = this.document.activeElement; switch (iFocus.tagName.toLowerCase()) { case 'body': return false; case 'iframe': return; } return iFocus; }); Search_Result.innerHTML = 'Hello, Focus...

    JS获取并操作iframe中元素的方法

    document.frames[i].document.getElementById(‘元素的ID’); 2、IE专用(通过iframe名称形象定位): 代码如下: document.frames[‘iframe的name’].document.getElementById(‘元素的ID’); 以上方法,不仅对...

    iframe自适应高度(兼容多种浏览器)

    - 使用`document.frames[iframeId].document.body.scrollHeight`(适用于IE) 以上三种方法可以分别获取到`iframe`内部文档的`<html>`元素和`<body>`元素的滚动高度,其中滚动高度指的是当文档内容超出容器大小时,...

    frame与frame之间如何用JavaScript传值

    var value = parent.frames[indexOrName].document.getElementById('elementId').value; // 设置值 parent.frames[indexOrName].document.getElementById('elementId').value = newValue; ``` 以上代码中,`...

    Jquery取得Iframe中元素的几中方法

    - **选中单选按钮**:在父窗口中操作 iframe 中的单选按钮,可以使用 `$(window.frames["iframe1"].document).find("input[@type='radio']").attr("checked","true")`;反之,在 iframe 中操作父窗口的单选按钮,则...

    Jquery中获取iframe的代码

    $(window.frames["iframeChild"].document).find("input[@type='radio']").attr("checked", "true"); ``` 同样地,如果是在`iframe`内操作,要选中父窗口中的所有单选按钮,可以写成: ```javascript $(window....

Global site tag (gtag.js) - Google Analytics