<li style="display: block;" class="selectlist-item">fsdafkds</li>
如何通过jquery
按类禁用控制器答案 0 :(得分:3)
如果你想使用jQuery隐藏它:
$('.classname').hide();
.
是类选择器。与CSS相同。
答案 1 :(得分:2)
你的问题不明确;您无法禁用非表单字段元素。
但是如果你想根据它的类选择一个元素,你可以这样做:
$('.selectlist-item')
注意班级名称前的dot
。这实际上类似于CSS。
更多信息:
答案 2 :(得分:1)
这是我用来禁用或重新启用控件的代码:
function handleControlDisplay(className, foundCount, checked) {
var button = jQuery(className);
if (foundCount > 0 && foundCount == checked) {
// enable
button.removeAttr("disabled");
}
else {
// set the disabled attribute
button.attr("disabled", "true");
};
}