select下拉框实现重复选中点击事件 (引用地址:)
谢谢网络资源,
<select id="type" name="type" title="型">
<option value="请选择" disabled>请选择</option>
<option value="01">引用</option>
<option value="02">引用2</option>
<option value="03">引用3</option>
<option value="04">引用4</option>
</select>
//下拉列表改变事件
$("#type").change(function () {
//要执行的代码操作
}).mousedown(function () { //当按下鼠标按钮的时候
this.sindex = $(this)[0].selectedIndex;
$(this)[0].selectedIndex = 0; //把当前选中的值得索引赋给下拉选中的索引
}).mouseout(function () { //当鼠标移开的时候
if ($(this)[0].selectedIndex === 0) { //如果为0,就是根本没有选
$(this)[0].selectedIndex = this.sindex; //就把下拉选中的索引改变成之前选中的值得索引,就默认选择的是之前选中的
}
});