09-02
17
判断FCKeditor内容是否为空
作者:Java伴侣 日期:2009-02-17
复制内容到剪贴板 程序代码
1. <script language="javascript">
2. <!--
3. function checkForm(){
4. var Content =FCKeditorAPI.GetInstance("content").GetXHTML();
5. if(Content==null||Content==""){
6. alert('内容不能为空');
7. return(false);
8. form1.EditorDefault.focus();
9. }
10. return true;
11. }
12. -->
13.</script>
本篇文章来源于 永余PHP开源技术社区 | http://www.91php.com
原文链接:http://www.91php.com/html/Javascript/200809/03-3.html
2. <!--
3. function checkForm(){
4. var Content =FCKeditorAPI.GetInstance("content").GetXHTML();
5. if(Content==null||Content==""){
6. alert('内容不能为空');
7. return(false);
8. form1.EditorDefault.focus();
9. }
10. return true;
11. }
12. -->
13.</script>
本篇文章来源于 永余PHP开源技术社区 | http://www.91php.com
原文链接:http://www.91php.com/html/Javascript/200809/03-3.html
评论: 0 | 引用: 0 | 查看次数: 507
发表评论