我正在尝试通过ajax发送两个值,但问题是它在mozilla中仅发送一个值
我的阿贾克斯
$('#post_submit').click(function() {
event.preventDefault();
var great_id = $("#post_container_supreme:first").attr("class");
var poster = $("#poster").val()
$.ajax({
type: "POST",
url: "post_update.PHP",
data: 'poster='+ poster + '&great_id=' + great_id, //the value in great id is not being sent to the PHP page
beforeSend: function() {
$("#loader_ic").show();
$('#loader_ic').fadeIn(400).html('<img src="data_cardz_loader.gif" />').fadeIn("slow");
},
success: function(data) {
$("#loader_ic").hide();
$("#new_post").prepend(data);
$("#poster").val('');
}
})
})
})
解决方法:
您有一些编码错误,可能会导致此问题.在第1行中,您尚未定义变量事件,该事件属于lambda函数的参数列表.更改为:
$('#post_submit').click(function(event) {
第二行,您错过了;.最后,以及ajax调用之后和最后一行.