87,993
社区成员
发帖
与我相关
我的任务
分享
$(".more-hot-collection").click(function() {
$(".article-content").removeClass("hnone").addClass("hblock");
$(this).hide();
});
-----------------------------
$(function() {
$(".more-hot-collection").click(function() {
$(".article-content").removeClass("hnone").addClass("hblock");
$(this).hide();
});
});