之前在自定义主题时会使用很多自定义的短代码,这几天突然失效了,查找原因发现Qtags未定义
- Uncaught ReferenceError: QTags is not defined at post.php:2264:3
通过互联网查找到解决方法
在以下代码外添加window.onload = function() {
- QTags.addButton(‘prismatic_pre’, ‘pre’, ‘<pre><code class=“language-“>’, ‘</code></pre>’, ‘z’, ‘Preformatted Code’);
完整代码如下
- window.onload = function() {
- QTags.addButton(‘prismatic_pre’, ‘pre’, ‘<pre><code class=“language-“>’, ‘</code></pre>’, ‘z’, ‘Preformatted Code’);
- };
原文链接:https://www.artcg.design/1085.html,转载请注明出处。
评论0