多次加载编辑器

时间:2013-01-11 16:55:21

标签: php javascript textarea yui

我使用YUI Rich Text Editor,我通过javascript:

加载它
var myEditor = new YAHOO.widget.Editor('comments', {
height: '80px',
width: '600px',
dompath: false, //Turns on the bar at the bottom
animate: true,
});
myEditor.render();

现在我想将它附加到多个textarea,如下所示:

echo "<textarea name='comments' id='comments" . $issue_id . "' style='width: 600px; height: 80px;' onfocus=\"findField('comments" . $issue_id . "')\">" . $comments . "</textarea>";

如何在脚本中添加'comments" . $issue_id . "'之类的内容? 有人可以给我一个关于如何进行的提示吗?感谢

0 个答案:

没有答案