jquery 选择器
我正在努力找出这种 html 的选择器,
<input type="hidden" value="2.0" name="A_ITEM-AMOUNT[1]">
我试图用 jQuery 表达式过滤很多这些行,但在我的匹配中没有运气(要么太多,要么根本不匹配)。
我正在使用以下 jquery 字符串。
$("[id$='aform']").contents()
.filter("[name^='A_ITEM-AMOUNT\\[1']")
.each(function (index,element)
有什么想法吗?
最好的问候奥尔姆
Im am struggling with trying to figure out a selector for this kind of html
<input type="hidden" value="2.0" name="A_ITEM-AMOUNT[1]">
Im trying to filter alot of these lines with a jQuery expression but has no luck in my matches ( either too much or no match at all).
I'm using the following jquery string.
$("[id$='aform']").contents()
.filter("[name^='A_ITEM-AMOUNT\\[1']")
.each(function (index,element)
Any ideas?
Best Regards Olme
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用更简单的选择器,如下所示:
您可以在这里尝试一下,如果
[id$='aform']
引用You can use a simpler selector, like this:
You can give it a try here, also if the
[id$='aform']
refers to a<form>
, make itform[id$='aform']
to be much more efficient.