4

如果用户发出换行符,我如何告诉 YUI 编辑器将所有文本包含在内<p></p>并使用?<p></p><br>

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

而不是这个:

The quick brown fox<br>jumps over the lazy dog

我想要这个:

<p><p>The quick brown fox</p><p>jumps over the lazy dog</p></p>

除了在保存和查找替换标签之前解析整个 html 之外,任何想法如何做到这一点?

更新:我刚刚注意到,<p></p>如果整个文本包含在<p></p>. 换句话说,问题将是:

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

4

1 回答 1

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();

如此处所述

于 2009-03-04T10:00:48.157 回答