当前位置:  开发笔记 > 编程语言 > 正文

YUI编辑:<p>而不是换线?

如何解决《YUI编辑:<p>而不是换线?》经验,为你挑选了1个好方法。

如何告诉YUI-Editor将所有文本括起来

并使用,

而不是
在用户发出换行符时?

这里有一个例子来说明我正在尝试做的事情:

而不是这个:

The quick brown fox
jumps over the lazy dog

我想要这个:

The quick brown fox

jumps over the lazy dog

任何想法除了解析整个HTML之前如何做到这一点,然后保存并找到 - 替换标签?

更新:我刚注意到,

如果整个文本都包含在内,YUI编辑器会自动发布换行符

.换句话说,问题是:

如何告诉YUI编辑器将整个文本包含在textarea中

andynormancx.. 6

看起来你想要"ptags"配置选项:

var myEditor = new YAHOO.widget.Editor('msgpost', {
    height: '300px',
    width: '522px',
    dompath: true, //Turns on the bar at the bottom
    animate: true, //Animates the opening, closing and moving of Editor windows
    ptags: true
});
myEditor.render();

如此处所述.



1> andynormancx..:

看起来你想要"ptags"配置选项:

var myEditor = new YAHOO.widget.Editor('msgpost', {
    height: '300px',
    width: '522px',
    dompath: true, //Turns on the bar at the bottom
    animate: true, //Animates the opening, closing and moving of Editor windows
    ptags: true
});
myEditor.render();

如此处所述.

推荐阅读
李桂平2402851397
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有