|
楼主 |
发表于 2016-2-17 18:57:13
|
显示全部楼层
$("#FeedbackButton").click(function() {
if ($('#info').val() == '') {
$('#info_error').html('请填写反馈内容!');
return false;
}
var data = {
"<?php echo $this->security->get_csrf_token_name(); ?>":"<?php echo $this->security->get_csrf_hash(); ?>",
"info": $('#info').val(),
"title": $('#title').val(),
}
$.ajax({
type: 'POST',
url: "./feed_back",
data: 'data=' + JSON.stringify(data),
success: function(result) {
// console.log(result);
if (result == 1) {
alert('提交成功,谢谢您的反馈!');
}else{
$("#info_error").html("反馈失败!");
$("#info_error").hide(1000);
return false;
}
}
});
});
关闭csrf是没问题的 |
|