在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
变量。
谢谢。
答案 0 :(得分:1)
你是说这个?
$(myblock).find("table th:first-child").show();
答案 1 :(得分:1)
您可以使用:
$('table th:first-child', myblock).show();
或者:
myblock.find("table th:first-child").show();