jQuery - 查找其中包含多个 HTML 标记属性的元素

发布于 2024-11-17 07:11:38 字数 365 浏览 3 评论 0原文

为什么使用这个:

var parent = $('div.form.offer_mails');
var period = parent.find('input[type=checkbox,name=timeperiod]');

我得到这个(Mozilla Firefox 错误控制台中的异常):

Error: uncaught exception: Syntax error, unrecognized expression: [type=checkbox,name=timeperiod]

难道不能搜索具有多个属性及其值的元素吗?

请解释并解决我的问题。 :)

Why using this:

var parent = $('div.form.offer_mails');
var period = parent.find('input[type=checkbox,name=timeperiod]');

I get this (exception in my Mozilla Firefox Error Console):

Error: uncaught exception: Syntax error, unrecognized expression: [type=checkbox,name=timeperiod]

Isn't it possible to search an element with more than one attribute and it's value?

Please explain and solutionize my problem. :)

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

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

发布评论

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

评论(1

吹梦到西洲 2024-11-24 07:11:38

是的,这样:

var period = parent.find('input[type=checkbox][name=timeperiod]');

注意,这也是一个有效的 CSS 选择器。

Yes, in this way:

var period = parent.find('input[type=checkbox][name=timeperiod]');

Note that this is also a valid CSS selector.

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