我想在同一页面上有两个ckeditor

时间:2016-02-08 12:20:12

标签: ckeditor

我使用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>

但它没有用,因为我只有第一种形式出现

感谢您的帮助:)

1 个答案:

答案 0 :(得分:0)

最简单的方法是使用jquery适配器(你必须将其添加为插件)。

http://docs.ckeditor.com/#!/guide/dev_jquery