kindeditor获取内容,清空,设置kindeditor输入提示信息

1初始化kindeditor

var clearDefault=true;//是否有默认文字信息
var editor = KindEditor.create('textarea[name="s_content"]', {
	allowFileManager : true,
	filterMode:true,
	width : '100%',
	height:'291px',
	items:items_simp,
	afterFocus : function(){//获得焦点 删除默认文字信息
		editor.sync('#s_content');
		if(clearDefault){	
		 if(document.getElementById('s_content').value=="企业简介(不少于600字)、图片(不少于一张、 图片宽不得大于800px,高不限)、宣传视频可根据企业情况选择上传。"){
			KindEditor.html("#s_content","");
	     } 
			clearDefault=false;	
		}
	},
	afterBlur: function(){this.sync();}//失去焦点,同步信息数据
	uploadJson : '<%=basePath%>/r/plugins/kindeditor/jsp/upload_json.jsp',
    fileManagerJson : '<%=basePath%>/r/plugins/kindeditor/jsp/file_manager_json.jsp'
});

2点击清除默认信息

点击清除默认信息
//同步kindeditor至