问题
I have been looking around all day after a good multiselect plugin looks as the same as a standard dropdown control. I have tried using jQuery UI MultiSelect Widget created by ehynds, dropdown-check-list and jQuery MultiSelect created by A Beautiful Site. These are really good plugins but I really want to use a plugin that have the same appearence as a standard dropdown in html5. Hope I make any sence!
Have a nice day!
// Solution
回答1:
Bootstrap Multiselect - http://davidstutz.github.io/bootstrap-multiselect/
In terms of appearance, you may have to use CSS to get the styling you want.
回答2:
Because of many have looked for an answear to my question I will show a good script. Im very fond of: http://labs.abeautifulsite.net/archived/jquery-multiSelect/
回答3:
http://users.skavt.net/blaz/MultiSelect/demo.html
回答4:
There is an easier way I found today that will allow users to select multiple options in the <select>
element. The multiple attribute specifies that multiple options can be selected at once.
<select multiple>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
来源:https://stackoverflow.com/questions/10026321/html5-multiselect-dropdown-with-checkboxes-plugin-designed-as-standard-select