jq选择器
Posted csgbpd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jq选择器相关的知识,希望对你有一定的参考价值。
//设置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选择器的主要内容,如果未能解决你的问题,请参考以下文章