jQuery:用show()显示父节点的一些节点

时间:2015-01-16 17:10:54

标签: javascript jquery css children

在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变量。

谢谢。

2 个答案:

答案 0 :(得分:1)

你是说这个?

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

答案 1 :(得分:1)

您可以使用:

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

或者:

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