本文介绍了我需要为每个项目选择一个带有复选框的选择框.关于jquery-ui插件有什么建议吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要一个类似于WinForms中"CheckedListBox"的html控件":

I need a html 'control' similar to "CheckedListBox" from WinForms:

<select> <optgroup> <option>Item 1</option></optgroup></select> 

其中每个项目(和组)都有一个复选框,可以使用回调分别对其进行选择/取消选择.

where each item (and group) has a check box which can be individually checked/unchecked with callbacks.

有人找到了实现此目的的jquery-ui或其他选项吗?

Has anyone found a jquery-ui or other option for accomplishing this?

谢谢!

推荐答案

我不认为您可以使用标准选择框来做到这一点,但是如果您将其放入自定义选择框,然后添加您的input复选框,您可能可以实现您想要的.对jquery自定义选择框进行一些搜索,以找到适合您的选择.在这里,我发现了一对夫妇(未经测试,因此不一定推荐...)

I don't believe you can do that with a standard select box, but if you make it into a custom select box and then add in your input checkboxes to the items, you could probably achieve what you desire. Do some searches for a jquery custom select box to find what suits you. Here a just a couple I found (untested, and thus not necessarily recommending...)

http://www.mypocket-technologies.com/jquery/SelectBoxPlugin/

http://dervish.wsisiz.edu.pl /〜suszynsk/jQuery/demos/jquery-selectbox/

这篇关于我需要为每个项目选择一个带有复选框的选择框.关于jquery-ui插件有什么建议吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 08:00