YUI リッチ テキスト エディターを使用し、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();
今度は、次のように複数のテキストエリアにアタッチしたいと思います:
echo "<textarea name='comments' id='comments" . $issue_id . "' style='width: 600px; height: 80px;' onfocus=\"findField('comments" . $issue_id . "')\">" . $comments . "</textarea>";
スクリプトに次のようなものを入れるにはどうすればよい'comments" . $issue_id . "'
ですか? 続行する方法についてのヒントを教えてもらえますか? ありがとう