jQuery: 用 show() 显示父节点的一些节点
jQuery: show some nodes of the parent with show()
在jQuery
var myblock = $("#mycaret");
//then myblock slighly modified by jQuery
修改后的 myblock,我想这样做:
要通过 jQuery 为 myblock
中的所有表排除此 css 样式 table th:first-child {display:none;}
?
这与
几乎相同
$("#mycaret table th:first-child").show();
但是我需要它用于 myblock
变量。
谢谢。
你是这个意思?
$(myblock).find("table th:first-child").show();
您可以使用:
$('table th:first-child', myblock).show();
或者:
myblock.find("table th:first-child").show();
在jQuery
var myblock = $("#mycaret");
//then myblock slighly modified by jQuery
修改后的 myblock,我想这样做:
要通过 jQuery 为 myblock
中的所有表排除此 css 样式 table th:first-child {display:none;}
?
这与
几乎相同$("#mycaret table th:first-child").show();
但是我需要它用于 myblock
变量。
谢谢。
你是这个意思?
$(myblock).find("table th:first-child").show();
您可以使用:
$('table th:first-child', myblock).show();
或者:
myblock.find("table th:first-child").show();