ajax异步、同步问题,KindEditor ajax提交内容,ajax提交form表单

前端之家收集整理的这篇文章主要介绍了ajax异步、同步问题,KindEditor ajax提交内容,ajax提交form表单前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如果ajax不采用异步,整个js代码在服务器返回结果前都将阻塞,alert方法除外


lookUp('lookUp','',100,300,3);

showMessage('lookUp','false',false,-1);

alert();

callAjaxByName();

title = title? title:"编辑";

$(".modal-title").html(title);

$("#myModal").modal("show");

红色部分将在ajax返回结果后在执行



当用Ajax提交表单时,KindEditor的内容获取不到,HTML数据获取不了

原因:当ajax提交时,KindEdito的HTML数据还没有同步到表单中来,

KindEditor同时提供了方法

afterBlur

编辑器失去焦点(blur)时执行的回调函数

数据类型: Function

默认值: 无

解决方案:

<script type="text/javascript">

KindEditor.ready(function (K) {

window.editor = K.create('#AContent',{

afterBlur: function () { this.sync(); }

});

});

</script>

ajax提交form:$('#'+iFormId).serialize();

猜你在找的Ajax相关文章