ckeditor4 怎样获取输入的值呢?
我想获取ckeditor4 的输入值,网上搜了不少帖子,也去官网看了文档,没找到答案。。。
大概代码如下:
HTML:
<html> <head> <script src="/js/jquery1.9.js"></script> <script src="/ckeditor/ckeditor.js"></script> </head> <body> ....some html code..... <textarea class="ckeditor" cols="80" id="editor1 claim" name="claim" rows="10"> </textarea> ....some html code..... </body> </html>JQUERY:
$(document).ready(function() { var test=CKEDITOR.instances.editor1.getData(); alert(test); /* if(test ==""){ alert("Please enter something."); return false; }*/ });现在出现问题是,报:getDate undefined .....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
做用是什么呢?为什么我可以保存,但是取出来时带
html标签????
的确是ID的问题。当时没发现。
你的id有问题
id="editor1 claim"