验证FCKeditor
如何使用 javascript 验证 FCKeditor 的必填字段。
how can FCKeditor be validated for required field using javascript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 javascript 验证 FCKeditor 的必填字段。
how can FCKeditor be validated for required field using javascript.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
试试这个,
来源:
http://dreamtechworld.wordpress.com/2008/12/06/validating-firld-in-fckeditor-using-javascript/
Try this,
Source:
http://dreamtechworld.wordpress.com/2008/12/06/validating-firld-in-fckeditor-using-javascript/
使用 FireBug,查看它正在更新哪些隐藏的
textarea
。然后检查该元素。这只是一个例子。它可能也不会使用这样的
id
,因为同一页面上有多个实例。FCKeditor 替换的
textarea
可能是保存其 HTML 的区域。另请注意,FCKeditor 可能看起来是空白的,即使其中有 HTML。
Use FireBug, and see what hidden
textarea
it is updating. Then check that element.That is just an example. It probably doesn't use an
id
like that either, because of multiple instances on the same page.The
textarea
that FCKeditor replaces is probably the one that holds its HTML.Note too, the FCKeditor can seem blank, even though there is HTML in it.
要验证 FCKeditor 是否为空,请创建以下函数并在验证包含 TEXTAREA 的编辑器时调用它:
然后添加另一个函数以从 TEXTAREA 的值中剥离 HTML 标签:
在上面的函数中使用了 jQuery 的修剪函数。使用 jQuery 或用 java 脚本的一些修剪功能替换它,例如:
现在您可以检查 TEXTAREA 的值,如下所示:
希望它能像我一样工作。
玩得开心
To Validate FCKeditor for being empty, create below function and call it whenever going to validate your editor containing TEXTAREA:
Then add another function to Strip HTML tags from TEXTAREA's value:
In above function used jQuery's trim function. Use jQuery or replace it with some trimming function for java script such as:
Now you can check value of TEXTAREA for example as below:
Hope it will work as good as worked for me.
Have fun
这可能对某人有用
资源是 http://docs.cksource.com/FCKeditor_2.x /Developers_Guide/JavaScript_API
this may be useful for someone
resource is http://docs.cksource.com/FCKeditor_2.x/Developers_Guide/JavaScript_API