从 iframe jquery 获取具有特定名称的输入

发布于 2024-11-24 12:15:17 字数 239 浏览 0 评论 0原文

我在 iframe 中有一个表单,现在我想获取具有特定名称的输入。我的 iframe 的 id 是“myFrame”。我能够通过 $("#myFrame").contents().find("input") 取出 iframe 内的输入,但我想要按名称输入,所以我做了 $("#myFrame").contents().find("input[name=input_id]") 但失败。有人能帮我解决这个问题吗?

I have a form inside an iframe, now I want to get the input with certain name. The id of my iframe is "myFrame". I was able to take out the inputs inside the iframe by $("#myFrame").contents().find("input") but i want the input by name, so i did $("#myFrame").contents().find("input[name=input_id]") but with failure. Can anybody help me with this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陌生 2024-12-01 12:15:17

如果input_id变量,则需要连接input_id

$("#myFrame").contents().find("input[name='" + input_id + "']");

If input_id is a variable, you need to concatenate the input_id:

$("#myFrame").contents().find("input[name='" + input_id + "']");
段念尘 2024-12-01 12:15:17

您是否尝试过(使用双引号):

   $("#myFrame").contents().find('input[name="input_id"]')

当您说您用以下方式取出输入时:

   $("#myFrame").contents().find("input")

您是否检查了您想要的输入是否在该集合内?

Have you tried (using double quotes):

   $("#myFrame").contents().find('input[name="input_id"]')

and when you say that you took out the inputs with:

   $("#myFrame").contents().find("input")

did you check that the input you wanted was inside that collection?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文