HTML5 multiselect dropdown with checkboxes plugin. Designed as standard <select> dropdown

人盡茶涼 提交于 2019-12-03 11:33:46

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!