$(function() {
setTimeout(function () {
var mathcodeList = document.querySelectorAll('.htmledit_views img.mathcode');
if (mathcodeList.length > 0) {
for (let i = 0; i < mathcodeList.length; i++) {
if (mathcodeList[i].naturalWidth === 0 || mathcodeList[i].naturalHeight === 0) {
var alt = mathcodeList[i].alt;
alt = '(' + alt + ')';
var curSpan = $('');
curSpan.text(alt);
$(mathcodeList[i]).before(curSpan);
$(mathcodeList[i]).remove();
}
}
MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
}
}, 1000)
});

服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net

相关推荐: 35岁大限?Android程序员的蜕变与转型

前言 国内一直流传这一句名言——程序员的开发生命只到35岁!!于是转型就成为了国内程序员们最关注的话题之一。 一般来说程序员生涯中的重大转型,大致分为三种类型:技术上转型、向管理转型、创业转型。 在开发生涯中,每个程序员都至少会面临一次这样的机会和挑战,其中,…