ブログパークmarkdownエディタコード折りたたみ
1159 ワード
ブログ園設定でjs権限を申請します.サイドバーに作用すればいいし、他の場所でもいいです.適切なmarkdownエディタのみで、他のインタフェース美化コードと一緒に使用するとバグが発生する可能性があります.
転載先:https://www.cnblogs.com/Vaxy/p/11409465.html
$(document).ready(function () {
var pres = $("pre");
for (var i = 0; i < pres.length; i++) {
$(pres[i]).attr('id', 'pre' + i);
$(pres[i]).children('code').hide();
$(pres[i]).prepend('<button id="btn'+ i +'" onclick="view_code(\'pre'+ i +'\');">view code</button>');
}
});
function view_code (id) {
var btn_text = document.getElementById(id).children[0].innerText;
var style;
var status;
if(btn_text == 'view code') {
style = '""';
status = 'hide code';
} else {
style = 'display: none;';
status = 'view code';
}
document.getElementById(id).children[0].innerText = status;
document.getElementById(id).children[1].style = style;
}
転載先:https://www.cnblogs.com/Vaxy/p/11409465.html