标签:hid NPU sele inpu ide only 下拉 ane attr
//设置radio、checkbox不能点击
$("input[type=‘radio‘],input[type=‘checkbox‘]").attr("disabled", true);
//将radio选中的disable去掉解决数据传递问题
$("input[type=‘radio‘]:checked,input[type=‘checkbox‘]:checked").removeAttr("disabled");
//所有的下拉框不能进行选取
$("select").attr("disabled", true);
//设置以filePicker开头的id
$("[id^=‘filePicker‘]").hide();
//设置file-item、file-panel两个类隐藏
$(".file-item .file-panel").hide();
//所有的input都为只读
$("input").attr("readonly", true);
标签:hid NPU sele inpu ide only 下拉 ane attr
原文地址:https://www.cnblogs.com/csgbpd/p/12068106.html