我在我的表单中有这个代码(action =“index.php”method =“post”id =“reform”):
<input class="radio-input" id="reg_title1" type="radio" name="title" value="Mr." checked="checked">
<input class="radio-input" id="reg_title2" type="radio" name="title" value="Mrs.">
通过时:
$.ajax({
type: 'post',
url: 'reg.php',
data: $("#regform").serialize(),
success: function (response) {
if(response == 'success') {
location.reload();
}
else {
alert(response);
}
}
});
e.preventDefault();
在Safari中,我获得了“标题”值。在Firefox中它神秘地没有发布!我做了var_dump($ _ POST);它在Safari中显示数组中的标题值,但在Firefox中不显示。发送广播内容有什么问题?