我使用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 . "'
之类的内容?
有人可以给我一个关于如何进行的提示吗?感谢