嗨,我搜索并找到了一些信息,但我不能为此函数设置名称以在其他函数中再次调用它以“重新加载”数据。
我是个菜鸟,所以我尝试在函数 myfunction() {} 中从 var 形式包装到 en 但没有用。有什么建议么?
$(document).ready(function (){
var form = $('#formcomments');
var submit = $('#comments');
// send ajax request
$.ajax({
url: '<?PHP echo $this->make_base_url("user/comments_all/".$resdata['id']."/");?>',
type: 'POST',
cache: false,
data: form.serialize(), //form serizlize data
beforeSend: function(){
// change submit button value text and disabled it
submit.val('Enviando...').attr('disabled', 'disabled');
},
success: function(data){
// Append with fadeIn see http://stackoverflow.com/a/978731
var item = $(data).hide().fadeIn(800);
$('.module').append(item);
var objDiv = document.getElementById("modulecomm");
objDiv.scrollTop = objDiv.scrollHeight;
// reset form and button
form.trigger('reset');
submit.val('Submit Comment').removeAttr('disabled');
},
error: function(e){
alert(e);
}
});
});