更多操作
无编辑摘要 标签:手工回退 |
无编辑摘要 |
||
第1行: | 第1行: | ||
mw.loader.load( '/ | mw.loader.load( 'https://polyfill.io/v3/polyfill.min.js?features=es6' ); | ||
mw.loader.load( 'https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js' ); | |||
MathJax = { | |||
tex: { | |||
inlineMath: [['$', '$'], ['\\(', '\\)']] | |||
}, | |||
svg: { | |||
fontCache: 'global' | |||
} | |||
}; | |||
/* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */ | /* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */ | ||
//simplemath | //simplemath |
2023年7月14日 (五) 15:52的版本
mw.loader.load( 'https://polyfill.io/v3/polyfill.min.js?features=es6' );
mw.loader.load( 'https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js' );
MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']]
},
svg: {
fontCache: 'global'
}
};
/* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */
//simplemath
function waitForMathJax($content) {
if (typeof MathJax === 'undefined') {
setTimeout(function () { waitForMathJax($content); }, 1000);
} else {
MathJax.Hub.Queue(["Typeset", MathJax.Hub, $content[0]]).execute();
}
}
mw.hook('wikipage.content').add(waitForMathJax);
//基本函数
function fadeIn(id,time){
$("#"+id).fadeIn(time)
}