jQuery转换选择框为按钮的插件 Select2Buttons
- 授权协议: 未知
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/o-sam-o/jquery.select2Buttons
软件介绍
Select2Buttons是一个能将网页中的select选择框转换成一组按钮的插件。
主要功能特点:
- 转换select选择框为标签式按钮
- 支持js回发调用
- 支持disabled选项
- 支持将多个select设置为一组
- 支持取消默认选中
示例代码:
<select name="simple-select">
<option>One</option>
<option>Two</option>
<option>Three</option>
</select>
<script>
$('select[name=simple-select]').select2Buttons();
</script>
