按名称获取表单元素?

发布于 2024-07-16 09:05:09 字数 166 浏览 3 评论 0原文

我想在一个漂亮的 Prototype 或 jQuery 风格的快捷方式中轻松地设计表单中具有相同名称的所有单选按钮的样式。

$('billship').select('name:shipType') 或类似的东西。

是否存在这样的表单字段名称快捷方式?

I would like to style all of the radio buttons with the same name in a form easily in a nice Prototype or jQuery-style shortcut.

$('billship').select('name:shipType') or something like that.

Does such a shortcut for form field names exist?

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

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

发布评论

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

评论(1

剑心龙吟 2024-07-23 09:05:09

对于 jQuery:

$('#billship input:radio[name="shipType"]');  
$('input:radio[name="shipType"]', '#billship');

两者是等效的,但第二个性能稍好一些,我个人更喜欢它。

对于 Prototype,我相信它会是这样的:

$('#billship input[type="radio"][name="shipType"]');

With jQuery:

$('#billship input:radio[name="shipType"]');  
$('input:radio[name="shipType"]', '#billship');

Both are equivalent, but the 2nd one performs slightly better and I personally prefer it.

With Prototype, I believe it would look like this:

$('#billship input[type="radio"][name="shipType"]');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文