请帮我。我在我的 mvc3 网站中使用 ckeditor_4.2_full。当我在我的 localhost 上测试它时它可以工作。(在 FireFox 和 Chrome 中)。但是当我在服务器上上传我的网站时,没有显示它必须存在的任何东西。为什么会发生这种情况?
我在页首引用它:
<script src="@Url.Content("~/ckeditor/ckeditor.js")" type="text/javascript"></script>
并在正文中使用:
@Html.TextAreaFor(model => model.Description, new { @class = "ckeditor", @id = "text-details" })
当我看到页面源代码并单击 ~/ckeditor/ckeditor.js 时,我可以看到 javascript 代码背后。谢谢。