以下javascript无法在firefox中运行test.php,但在Chrome中运行正常。
如果我使用$ .ajax而不是$ .post,那么在firefox和chrome中都可以
是什么原因引起的?
< script type = "text/javascript"
charset = "utf-8" > $(document).ready(function () {
var mail = 'aa@bb.com';
var message = 'hello';
$('#button1').click(function () {
var radiovalue = $(":radio:checked").val();
if (radiovalue == 'yes') {
$.post('test.php', {
a1: mail,
a2: message
},
function (data, status) {
alert("data:" + data + "\nstatus:" + status);
});
};
});
}); < /script>