CKEditor MathJax无法加载localhost

时间:2016-01-29 07:39:47

标签: ckeditor mathjax

我想通过MathJax使用CKEditor但是当我在localhost上使用脚本文件时这样:

<script type="text/javascript" src="~/Scripts/MathJax.js"></script>

我收到以下错误:

https://localhost:44303/Scripts/extensions/MathMenu.js?rev=2.6.0 
https://localhost:44303/Scripts/extensions/MathZoom.js?rev=2.6.0 

但是如果我像这样使用MathJax cdn引用:

    <script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
一切顺利。

如何修复第一个案例?

更新 我不会为此申请任何配置。

1 个答案:

答案 0 :(得分:0)

下载此 https://github.com/mathjax/MathJax/archive/2.7.7.zip 并解压到 /js 文件夹中

在 ckeditor.config.js 中的 CKEditor 中使用这个:

config.extraPlugins += (config.extraPlugins ? ',' : '' ) + 'mathjax';
config.mathJaxLib = '/js/MathJax-2.7.7/latest.js?config=TeX-AMS_HTML-full.js';