0

我无法将我的 json 值传递给 url

   

var url="http://192.168.2.143/php/welcome.php";

 $.ajax({
 type: 'POST',
 url: url,
 data: ({fname:"hi",age:"21"}),
 success: success,
 error:function(e)
 {
         alert(e);
 }

});


 }

 function success()
 {
         alert("done");
 }

好吧,如果我将网址更改为 welcome.php不起作用。我welcome.php的文件夹中有,我想从另一个系统访问它,所以我更改了网址,提前谢谢你。

4

1 回答 1

0

你有一个额外的花括号

 } // HERE

function success()
{
     alert("done");
}
于 2012-07-21T09:13:41.210 回答