$("a[name=reply]").live("click",function(){
$(this).toggle(
function () {
var $comments = $('#microBlogReplyContainer_' + $(this).attr("value"));
$comments.load($comments.attr("value"));
$("#ListComments_" + $(this).attr("value")).show();
var count = $(this).text().replace(/[^0-9]/ig, "");
if (!count) count = 0;
$(this).text('收起评论(' + count + ')');
},
function () {
var $comments = $('#microBlogReplyContainer_' + $(this).attr("value"));
$("#ListComments_" + $(this).attr("value")).hide();
var count = $(this).text().replace(/[^0-9]/ig, "");
if (!count) count = 0;
$(this).text('评论(' + count + ')');
}
).trigger('click');
});
说明:通过click事件绑定.再用 trigger('click')触发.防止点击第一次无效