获取ckeditor4.x里的值

项目中有这样一个需求,使用ckeditor可以上传图片,需要在前端验证一下不可上传多于5张图片。
以下是查看源代码所看到的ckeditor里的值

AAAAA

BBBB

CCC


要想知道有多少张图片,通过img标签的个数可以看出。那首先就需要获取到ckeditor里的值

ckeditor提供了这样一个方法可以做到
CKEDITOR.instances.editor1.getData()

所以代码可写为:
var content=CKEDITOR.instances.entity_content.getData();//entity_content为textarea的ID
var imgSize = $(content).find("img").size();


你可能感兴趣的:(获取ckeditor4.x里的值)