我有下表
<c:forEach items="${tablaserie.matriculas}" var="matricula" varStatus="loopmatricula">
<input type="hidden" id="<c:out value="matricula-${loopmatricula.index}" />" value="<c:out value="${matricula.matricula}" />" />
<tr>
<td style="text-align:center"><c:out value="${matricula.matricula}" /></td>
<c:set var="numeroceldas" value="${0}" />
<c:forEach items="${matricula.listado}" var="celda" varStatus="loopcelda">
<c:set var"identificadorcelda" value="${matricula.matricula}-${loopcelda.index}" />
<c:choose>
<c:when test="${celda.color eq '#ffffff' }" >
<td id="td-${identificadorcelda}" style="text-align:center;" onclick="displayCombo();" ><c:out value="${celda.nombre}" /></td>
<input id="input-${identificadorcelda}" type="hidden" value="<c:out value="${celda.nombre}" />" />
</c:when>
<c:otherwise>
<td id="td-${identificadorcelda}" style="color:white;text-align:center;" bgcolor="<c:out value="${celda.color}"/>" onclick="displayCombo();">
<c:out value="${celda.nombre}" />
</td>
<input id="input-${identificadorcelda}" type="hidden" value="<c:out value="${celda.nombre}" />" />
</c:otherwise>
</c:choose>
/c:forEach>
</tr>
</c:forEach>
我想禁用td
。 td
的名称是
id="td-${identificadorcelda}"
在$(document).ready()
中,我
if (tipoedicion == 0){
$("td[id*=td]").prop('disabled', true);
}
else {
$("td[id*=td]").prop('disabled',false);
}
td不会禁用,我可以单击它们。
如何禁用td?
答案 0 :(得分:1)
td没有禁用的属性。用于输入元素。您可以将鼠标光标隐藏在td上并禁用选择。它将使其像禁用一样工作
$(document).ready(function() {
$("#a").prop("disabled", true);
$('#b').css({
'cursor': 'none',
'user-select': 'none'
});
$('#b').click(function(){return false})
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<table>
<td id="b">sss</td>
</table>
<input id="a">
答案 1 :(得分:1)
由于td
实际上没有disabled
属性,因此,如果要阻止click
事件执行其操作,则可以设置自定义data-disabled
归因于您的td
。
因此,在您的$(document).ready()
中,您可以执行以下操作
if (tipoedicion == 0){
$("td[id*=td]").attr('data-disabled', 'true');
} else {
$("td[id*=td]").attr('data-disabled', 'false');
}
// ...
}
然后,在displayCombo()
函数中,您可以检查该属性,并仅返回td
将该属性设置为"true"
的情况,就像这样
function displayCombo() {
if ($("td[id*=td]").attr('data-disabled') === 'true') {
return;
}
// whatever it was doing before
}