HTML:
<table border="1px">
<tr>
<td colspan="2">
<div class="commentLink">
<a onclick="ShowBox.call(this); return false;" href="#">Comment</a>
</div>
</td>
</tr>
<tr class="commentBox" style="display: none;">
<td colspan="2">
<div class="hiddenComment">
<textarea class="textComment" rows="2" cols="100"></textarea>
<input class="foo" type="checkbox" />
<input class="commentBtn" type="button" value="Submit" onclick="addComment.call(this); return false;" />
<input class="commentBtn" type="button" value="Cancel" onclick="HideBox.call(this); return false;" />
</div>
</td>
</tr>
</table>
JS:使用jquery 1.4.2
function ShowBox() {
var that = this;
$(function () {
$(".commentBox").show();
//$(that).closest('tr').siblings().show();
});
}
function HideBox() {
var that = this;
$(function () {
$(that).siblings(".foo").attr("checked", false);
$(that).siblings(".textComment").empty();
$(".commentBox").hide();
});
}
我有两个显示/隐藏tr的功能。我现在的代码有效,但它也将关闭其他元素。这样做的优雅方式是什么?
答案 0 :(得分:1)
这应该这样做:
function ShowBox() {
$(this).closest ('tr').next ('tr.commentBox').show ();
}
function HideBox() {
var jThis = $(this);
jThis.siblings(".foo").attr("checked", false);
jThis.siblings(".textComment").empty ();
jThis.closest ('tr.commentBox').hide ();
}
顺便说一句,对于“优雅”,从HTML中删除onclick
属性!
然后使用以下命令添加点击功能:
$('td div.commentLink > a').bind ('click', ShowBox, false);
$('td div.hiddenComment > a.commentBtn[value=Submit]').bind ('click', addComment, false);
$('td div.hiddenComment > a.commentBtn[value=Cancel]').bind ('click', HideBox, false);
在$(document).ready ()
内。
答案 1 :(得分:0)
我认为版本1.3中添加了closest
选择器,所以只需使用它。