这是我的 JS 代码:
function info(){
$.ajax({
type:'POST',
url:'doSomething.php',
data:'text='+encodeURIComponent($('.text').html())
+'&info1='+encodeURIComponent($('.info1').html())
+'&info2='+encodeURIComponent($('.info2').html())
+'&info3='+encodeURIComponent($('.info3').html())
+'&var1='+$('#var1').val()
+'&var2='+$('#var2').val()
+'&var3='+$('#var3').val(),
success:function(){$('.action').fadeIn(500).delay(1000).fadeOut(500)}
});
//alert("info - did something, great!");
return false;
};
一切正常并传递给 doSomething.php 脚本;除了:
变量 1 变量 2 变量 3
谁能告诉我为什么?上面的JS有问题,还是我的PHP有问题:
我是 AJAX 的新手。- 感谢您的帮助!