User:Xiplus/js/hide-long-summary.js
外观
< User:Xiplus | js
注意:保存之后,你必须清除浏览器缓存才能看到做出的更改。Google Chrome、Firefox、Microsoft Edge及Safari:按住⇧ Shift键并单击工具栏的“刷新”按钮。参阅Help:绕过浏览器缓存以获取更多帮助。
javascript:
(function() {
var limit = 250;
$(".comment").each(function(i, e) {
if (e.innerText.length > limit) {
$(e).addClass("commentlong")
$('<a class="hidecomment">展開</a>').insertAfter(e);
var short = $('<span class="comment comment--without-parentheses commentshort"></span>');
$(short).text(e.innerText.substr(0, limit + 1) + "..." + e.innerText.substr(-1));
$(short).insertAfter(e);
$(e.parentElement).find(">.commentlong").hide();
}
});
$(".hidecomment").click(function(e) {
if ($(e.target.parentElement).find(">.commentlong").is(":visible")) {
$(e.target.parentElement).find(">.commentlong").hide();
$(e.target.parentElement).find(">.commentshort").show();
$(e.target.parentElement).find(">.hidecomment").text("展開");
} else {
$(e.target.parentElement).find(">.commentlong").show();
$(e.target.parentElement).find(">.commentshort").hide();
$(e.target.parentElement).find(">.hidecomment").text("收合");
}
});
})();