选择select中的所有选项
我有多项选择。如何才能使所有选项始终被选中?或者如何选择所有选项来提交。我只有 select 类(不是 ID)。
I have a multiple select. How can make, that all options will be selected always? Or how make a selecting all options ob submit. I have only class of select(not ID).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为您甚至可以像这样编写替换行:
以避免
.each()
循环。I think you can even write your replacement line like this:
to avoid the
.each()
loop.这里对 Kitsched 的代码进行了一些修改,以确保如果您只有类而没有 id,则能够选择按钮/选择控件。
如果您有任一按钮的 ID,或选择只需替换 .脚本中带有#。例如,如果按钮的 id 是 clickme 而不是 class,则只需使用 #clickme 而不是 .clickme。
希望这就是您正在寻找的。
Here's a slight modific to Kitsched's code to ensure that you're able to select the button/select control if you only have the class and not the id.
If you've IDs for either button or select just replace the . with # in script. For e.g. if button's id is clickme instead of class just use #clickme instead of .clickme.
Hope this is what you're looking for.
我不是 100% 确定这就是您所要求的,但这里是:
对于动态选项(使用 jQuery):
未经测试。
祝你好运。
I'm not 100% sure that this is what you're asking for, but here it goes:
For the dynamic option (with jQuery):
Untested.
Good luck.