最佳答案
高级题目,简单问题:
如何在 jQuery 中执行以下操作(隐藏除 $(this)
之外的所有内容) ?
$("table tr").click(function() {
$("table tr:not(" + $(this) + ")").hide();
// $(this) is only to illustrate my problem
$("table tr").show();
});