为什么 TinyMCE 编辑器没有出现在我的 Web 应用程序上?

发布于 2025-01-08 15:12:33 字数 1105 浏览 1 评论 0原文

我正在使用 NetBeans IDE 在 Struts 中制作 Web 应用程序。我希望 TinyMCE 编辑器出现在我的 index.jsp 上。我已经下载了必要的文件并将它们放置在以下路径中:

...\NetBeansProjects\BlogStruts\src\java\tinymce\jscripts\tiny_mce ... [这里有很多文件]

现在,我的 index.jsp< /strong> 文件是这样的:

<%@page contentType="text/html" pageEncoding="UTF-8"%>

<html>
<head>

<script type="text/javascript" src="tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
        mode : "textareas"
});
</script>

</head>

<body>
    <form>
        <textarea name="content" cols="50" rows="15">
                 This is some content that will be editable with TinyMCE.
         </textarea>
    </form>
</body>
</html>

但是当我运行应用程序时,index.jsp 仅包含一个文本区域,其中包含“这是一些可以使用 TinyMCE 编辑的内容”。在里面。我看不到任何 TinyMCE 功能。

我在其他地方找不到解决方案。有些人似乎也有同样的问题,但没有得到回应。已经阅读了 http://www.tinymce.com/ 中的常见问题解答,随后阅读了大约 10 个不同的教程,但没有成功。

我做错了什么?我正确加载脚本吗?谢谢。

I'm making a web application in Struts using the NetBeans IDE. I want the TinyMCE editor to appear on my index.jsp. I already downloaded the necessary files and located them in the following path:

...\NetBeansProjects\BlogStruts\src\java\tinymce\jscripts\tiny_mce ... [lots of files here]

Now, my index.jsp file is this:

<%@page contentType="text/html" pageEncoding="UTF-8"%>

<html>
<head>

<script type="text/javascript" src="tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
        mode : "textareas"
});
</script>

</head>

<body>
    <form>
        <textarea name="content" cols="50" rows="15">
                 This is some content that will be editable with TinyMCE.
         </textarea>
    </form>
</body>
</html>

But when I run the application, index.jsp only contains a textarea with "This is some content that will be editable with TinyMCE." inside it. I can't see any of the TinyMCE features.

I couldn't find the solution anywhere else. Some people seem to have the same problem but they didn't get a response. Already read the FAQs in http://www.tinymce.com/ followed like 10 different tutorials with no luck.

What am I doing wrong? Am I loading the script correctly? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮生未歇 2025-01-15 15:12:33

tinyMCE.init({
模式:“文本区域”
});

tinyMCE.init({
mode : "textareas"
});

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文