您的位置首页百科知识

html里select怎么设置和取消disabled

html里select怎么设置和取消disabled

的有关信息介绍如下:

html里select怎么设置和取消disabled

只要元素里面设置了disabled=“xxx”不管里面为什么都为禁用。

所以原生设置:启用--dom.setAttribute("disabled","disabled") 禁用--dom.removeAttribute(“disabled”)

jquery设置:$("#id").attr("disabled","disabled")

$("#id").removeAttr("disabled")

很多人都认为设置disabled="true"是为启用,设置为“false”时为禁用,这是错的。

使用JavaScript实现

无标题文档window.onload = function(){

document.getElementById("btn").onclick = function(){

var sel = document.getElementById("sel");

sel.disabled = sel.disabled ? false : true;

}

};

aaaaaabbbbbbcccccc

如有疑问可追问。

select 是支持disabled属性的,属性值为“disabled”就是禁用下拉的作用

dfasdfdfasdfsdfasdf