文件名称:js select类
文件大小:5KB
文件格式:TXT
更新时间:2014-06-01 03:18:51
select
//得到select项的个数 jQuery.fn.size = function(){ return $(this).get(0).options.length; } //获得选中项的索引 jQuery.fn.getSelectedIndex = function(){ return $(this).get(0).selectedIndex; } //获得当前选中项的文本 jQuery.fn.getSelectedText = function(){ if(this.size() == 0) return "下拉框中无选项"; else{ var index = this.getSelectedIndex(); return $(this).get(0).options[index].text; } }