KindEditor:用的ajax提交,提交2次才能获得textarea的值,怎么解决啊

发布于 2021-11-20 06:59:49 字数 720 浏览 817 评论 2

/*编辑器*/
function editor($id,$name,$width,$height,$content){
	$kindeditor="<script charset="utf-8" src="".__ROOT__."/Public/Plug/kindeditor/kindeditor.js"></script>
                 <script charset="utf-8" src="".__ROOT__."/Public/Plug/kindeditor/lang/zh_CN.js"></script>
		         <script>
			     KindEditor.ready(function(K) {
				     K.create('#".$id."', {
					     themeType : 'default'
				     });
	     });
		         </script>
				 <textarea id="".$id."" name="".$name."" style="width:".$width."px;height:".$height."px;visibility:hidden;">".$content."</textarea>";
	return $kindeditor;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谢绝鈎搭 2021-11-20 19:35:51
function editor($id,$name,$width,$height,$content){
	$kindeditor="<script charset="utf-8" src="".__ROOT__."/Public/Plug/kindeditor/kindeditor.js"></script>
                 <script charset="utf-8" src="".__ROOT__."/Public/Plug/kindeditor/lang/zh_CN.js"></script>
		         <script>
			     KindEditor.ready(function(K) {
				    window.editor = K.create('#".$id."', {
					     themeType : 'default'
				     });
	             });
		         </script>
				 <textarea id="".$id."" name="".$name."" style="width:".$width."px;height:".$height."px;visibility:hidden;">".$content."</textarea>";
	return $kindeditor;
}

function sort_insert(){
editor.sync();	
ThinkAjax.sendForm('sortadd','__URL__/insert/',insertHandle,'msgContent')
}

遇到同样问题的朋友可以看看,刚刚解决

尐偏执 2021-11-20 17:28:16

提交前要调用 sync 方法同步一下

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文