js selected的事件

来源:互联网 发布:ip伪装 python 编辑:程序博客网 时间:2024/05/22 05:18
选中下拉框中第一个选项
// jquery1.6以下版本
$('select').attr('selectedIndex', 0);
// jquery1.6或以上版本

$('select').prop('selectedIndex', 0);

下拉框无法选择:

$('select').attr('disabled', true);


0 0
原创粉丝点击