TextArea使用了ckeditor编辑器后,怎么用JS判断Textarea判断是否为空? 5
TextArea使用了ckeditor编辑器后,怎么判断Textarea判断是否为空?ckeditor已经对Textarea使用了:CKEDITOR.replace('t...
TextArea使用了ckeditor编辑器后,怎么判断Textarea判断是否为空?
ckeditor已经对Textarea使用了:CKEDITOR.replace( 'textarea1');
造成之前的表单检测语句失效:
if (document.form1.textarea1.value=='');
alert('内容不能为空!');
检测不出结果而直接提交了。
请问该怎么解决? 展开
ckeditor已经对Textarea使用了:CKEDITOR.replace( 'textarea1');
造成之前的表单检测语句失效:
if (document.form1.textarea1.value=='');
alert('内容不能为空!');
检测不出结果而直接提交了。
请问该怎么解决? 展开
2个回答
展开全部
要通过ID查找,并且是要先判断Ckeditor有没有返枯值,这样写:漏裂洞
var value = CKEDITOR && CKEDITOR.instances[id] ? CKEDITOR.instances[id].getData() : document.getElementById(id).value;
value == '' ? xx : oo;
id为textarea的id,也源察就是你调用的时候的id:CKEDITOR.replace(id)
var value = CKEDITOR && CKEDITOR.instances[id] ? CKEDITOR.instances[id].getData() : document.getElementById(id).value;
value == '' ? xx : oo;
id为textarea的id,也源察就是你调用的时候的id:CKEDITOR.replace(id)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询