您的位置首页生活百科

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”时为和陆禁用,这是错的。