YUI 富文本编辑器:文本着色工具不起作用

发布于 2024-08-20 06:00:33 字数 638 浏览 7 评论 0原文

我正在使用 YUI RTE(版本:2.8.0r4)。只有文本着色工具不起作用。当我突出显示文本时,它会启用,但单击图标时不会打开颜色选择器。请看一下快照, 替代文本 http://www.freeimagehosting.net/uploads/599cd59d1b.png

   var myEditor = new YAHOO.widget.Editor('body', {
                height: '300px',
                width: '99%',
                handleSubmit: true,
                dompath: true, //Turns on the bar at the bottom
                animate: true //Animates the opening, closing and moving of Editor windows

            });
myEditor.render();

我缺少任何 js/css 参考吗?请帮忙。

I'm using YUI RTE (version: 2.8.0r4). Only the text coloring tools are not working. It is enabled when I highlight the the text, but when clicking on the icon is not opening the color picker. Pls look at the snapshot,
alt text http://www.freeimagehosting.net/uploads/599cd59d1b.png

   var myEditor = new YAHOO.widget.Editor('body', {
                height: '300px',
                width: '99%',
                handleSubmit: true,
                dompath: true, //Turns on the bar at the bottom
                animate: true //Animates the opening, closing and moving of Editor windows

            });
myEditor.render();

Am I missing any js/css reference? please help.

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

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

发布评论

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

评论(2

悲欢浪云 2024-08-27 06:00:34

您需要按此顺序导入以下内容:

<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/combo?2.9.0/build/assets/skins/sam/skin.css"> 
<!-- Combo-handled YUI JS files: --> 
<script type="text/javascript" src="http://yui.yahooapis.com/combo?2.9.0/build/yahoo-dom-event/yahoo-dom-event.js&2.9.0/build/dragdrop/dragdrop-min.js&2.9.0/build/slider/slider-min.js&2.9.0/build/element/element-min.js&2.9.0/build/colorpicker/colorpicker-min.js&2.9.0/build/container/container_core-min.js&2.9.0/build/menu/menu-min.js&2.9.0/build/button/button-min.js&2.9.0/build/editor/editor-min.js"></script>

它肯定会起作用。确保没有重复导入,否则将无法工作。

You need to import the following in this order:

<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/combo?2.9.0/build/assets/skins/sam/skin.css"> 
<!-- Combo-handled YUI JS files: --> 
<script type="text/javascript" src="http://yui.yahooapis.com/combo?2.9.0/build/yahoo-dom-event/yahoo-dom-event.js&2.9.0/build/dragdrop/dragdrop-min.js&2.9.0/build/slider/slider-min.js&2.9.0/build/element/element-min.js&2.9.0/build/colorpicker/colorpicker-min.js&2.9.0/build/container/container_core-min.js&2.9.0/build/menu/menu-min.js&2.9.0/build/button/button-min.js&2.9.0/build/editor/editor-min.js"></script>

It will work for sure. Make sure no import is repeated otherwise it won't work.

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