gpt4 book ai didi

c# - 自动按下 iframe 中的按钮

转载 作者:行者123 更新时间:2023-12-02 19:26:01 25 4
gpt4 key购买 nike

我有一个带有 iframe 的 HTML 页面。这个 iframe 有一个按钮。按下该按钮的可能方法之一是什么?

我尝试使用javascript,但没有解决它......预先感谢您!

最佳答案

嘿,你可以尝试找到该按钮 ID 并处理点击事件。它看起来像这样。

$('#youriframeid').contents().find('#yourbuttonid').click(function(){});

编辑 您的 html 主页面包含 iframe。

<html>
<head>
<script src="http://code.jquery.com/jquery-1.8.0.min.js" type="text/javascript"> </script>
<script>
$('#a').contents().find('#iframbtn').click(function(){alert("It Worked!")});
$('#a').contents().find('#iframbtn').trigger('click');
</script>
</head>
<iframe id="a" source="a.html">

</iframe>
</html>

包含 iframe 标记的第二个 html 页面

<html>
<input type="button" id="iframbtn" value="clickme"/>
</html>

关于c# - 自动按下 iframe 中的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12048754/

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