按名称获取表单元素?
我想在一个漂亮的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 jQuery:
两者是等效的,但第二个性能稍好一些,我个人更喜欢它。
对于 Prototype,我相信它会是这样的:
With jQuery:
Both are equivalent, but the 2nd one performs slightly better and I personally prefer it.
With Prototype, I believe it would look like this: