在jQuery中

var myblock = $("#mycaret");
//then myblock slighly modified by jQuery


使用修改后的myblock,我想这样做:

jQuery为table th:first-child {display:none;}内的所有表排除此CSS样式myblock

这几乎与

$("#mycaret table th:first-child").show();


但是我需要它用于myblock变量。

谢谢。

最佳答案

您可以使用以下任一方法:

$('table th:first-child', myblock).show();


要么:

myblock.find("table th:first-child").show();

09-28 05:34