我使用Ckeditor但我想在同一页面中使用两个ckeditor
<form method="POST" action="">
<textarea name="repondre" id="repondre" style="width:100%" rows=2 COLS=40></textarea>
<input type="submit" value="Répondre" name="submitComment"/><br/>
</form>
<script>
CKEDITOR.replace( 'repondre',
{
height: 50,
customConfig : '/editor/custom/basic_config.js'
});
</script>
和第二种形式
<form method="POST" action="">
<textarea name="comment" id="comment" style="width:100%" rows=2 COLS=40></textarea>
<input type="submit" value="Répondre" name="submitComment"/><br/>
</form>
<script>
CKEDITOR.replace( 'comment',
{
height: 50,
customConfig : '/editor/custom/full_config.js'
});
</script>
但它没有用,因为我只有第一种形式出现
感谢您的帮助:)