|
@ -51,7 +51,7 @@
|
51
|
51
|
return;
|
52
|
52
|
}
|
53
|
53
|
if(!self.id) {
|
54
|
|
$(".commentList").html("");
|
|
54
|
$(".commentList").html("").parent().append("<div class="con-kong displayNone"></div>");
|
55
|
55
|
}
|
56
|
56
|
for(var i = 0; i < data.length; i++) {
|
57
|
57
|
var reply="";
|
|
@ -244,6 +244,11 @@
|
244
|
244
|
stype: self.stype
|
245
|
245
|
}, "get", function($data) {
|
246
|
246
|
$(".message").text($data);
|
|
247
|
if($data==0) {
|
|
248
|
$(".con-kong").removeClass("displayNone")
|
|
249
|
}else{
|
|
250
|
$(".con-kong").addClass("displayNone");
|
|
251
|
}
|
247
|
252
|
})
|
248
|
253
|
}
|
249
|
254
|
|