码迷,mamicode.com
首页 > 其他好文 > 详细

jq选择器

时间:2019-12-19 16:00:50      阅读:73      评论:0      收藏:0      [点我收藏+]

标签: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);

jq选择器

标签:hid   NPU   sele   inpu   ide   only   下拉   ane   attr   

原文地址:https://www.cnblogs.com/csgbpd/p/12068106.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!