使用jQuery获取获取select下拉框中option的值:
//通过绑定change事件,当下拉框内容发生变化时事件被启动
$("#wlms").bind("change",function(){
//获取被选中的option的值
var miaoshu = $(this).val();
//获取自定义属性的值
var bianhao = $(this).find("option:selected").attr("bianhao");
});
其中获取自定义属性的值部分,在HTML中部分是:
......
<option bianhao="abc"></option>
......