我想在用户点击按钮时提醒用户他们的操作是成功的,这是我的代码。请帮忙。提前谢谢。
<script type="text/javascript">
function postck3() {
$.post('insert_home.php', {
INSERT_WELCOME: CKEDITOR.instances.CKWELCOME.getData()
});
}
</script>
答案 0 :(得分:0)
尝试
$.post('insert_home.php',{INSERT_WELCOME:editor_data3}).done(function(data){
alert("Success data return ed from server is "+ data);
});