jquery-nice-select是一款轻量级的select下拉选择框美化jQuery插件。该插件可以将原生的select元素转换为自定义样式的下拉选择框,并且在选择时带有很酷的CSS3过渡动画效果。
使用方法
使用该下拉框美化插件需要在页面中引入nice-select.css和jquery以及jquery.nice-select.js文件。
初始化插件
在页面DOM元素加载完毕之后,可以通过niceSelect()方法来初始化该插件。
$(document).ready(function() {
$('select').niceSelect();
});
显示文本
你可以为每一个选项定义一个预定义的文本,在该选项被选择的时候,会显示这个文本。
Nothing
Some option
Another option
A disabled option
Potato
选择框的宽度
插件中预定义了一些可用的class类,用于定制不同样式的select选择下拉框。使用.wide class类会生成于父容器相等宽度的下拉框。
Nothing
Some option
Another option
A disabled option
Potato
右对齐
Nothing
Some option
Another option
A disabled option
Potato
小号文字
Nothing
Some option
Another option
A disabled option
Potato
方法
update
该方法用于更新select下拉选择框。
$('select').niceSelect('update');
destory
该方法用于销毁select下拉选择框。
$('select').niceSelect('destory');