gpt4 book ai didi

javascript - 使用 Prototype $ 方法访问 IFrame 的元素的方式是什么

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:52:16 26 4
gpt4 key购买 nike

使用原型(prototype) js 库,我可以使用 $(elementID) 访问元素。我可以通过

访问 Iframe 中的元素
$('iframeID').contentWindow.document.getElementById('ID of element inside Iframe'). 

我想对我的 Iframe 使用相同的美元方法来访问 Iframe 中的元素。有什么办法吗?

最佳答案

您可以使用类似以下内容的别名来调用该 iframe:

var $IFRAME = function (id){
return $('iframeID').contentWindow.document.getElementById(id);
}

然后,假设您想获取该框架中 id 为“p1”的元素的 innerHTML,您可以这样做:

var x = $IFRAME('p1').innerHTML;
alert(x);

或者要操纵它,例如隐藏它,您可以这样做:

$IFRAME('p1').hide();

函数的 $IFRAME 名称是我随意命名的,您可以将其命名为 getElementInsideIFrameID 或您喜欢的任何名称。

关于javascript - 使用 Prototype $ 方法访问 IFrame 的元素的方式是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2107502/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com