从 iframe jquery 获取具有特定名称的输入
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果
input_id
是变量,则需要连接input_id
:If
input_id
is a variable, you need to concatenate theinput_id
:您是否尝试过(使用双引号):
当您说您用以下方式取出输入时:
您是否检查了您想要的输入是否在该集合内?
Have you tried (using double quotes):
and when you say that you took out the inputs with:
did you check that the input you wanted was inside that collection?