gpt4 book ai didi

javascript - 如何使用 jquery 调用抓取 iframe 内按钮的值?

转载 作者:行者123 更新时间:2023-11-28 04:59:25 24 4
gpt4 key购买 nike

我有 2 个 html 页面(a.htmlb.html)。我做了一个<iframe>并将 b.html 设置为 a.html 的源。但是我如何通过类名使用 jquery 调用 a.html 来获取 b.html 按钮的值?仅供引用:两者都在同一域中。我怎样才能做到这一点?

a.html

<html>
<head>
<title>a.html</title>
<script>
function howToGetValueOfBtn() {

}
</script>
</head>
<body>
<iframe src="b.html"></iframe>
</body>
</html>

b.html

<html>
<body>
<input type="button" value="getThisValue" class="btn"/>
</body>
</html>

提前感谢您的所有帮助!

最佳答案

试试这个:

var button_value = $('iframe').contents().find('.btn').val();

但是最好给你的按钮一个Id

var button_value = $('iframe').contents().find('#btn_Value').val(); 
<input type="button" value="getThisValue" class="btn" id="btn_Value"/>

希望这有帮助

关于javascript - 如何使用 jquery 调用抓取 iframe 内按钮的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42267696/

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