Heim >Backend-Entwicklung >PHP-Tutorial >怎么把值传给php

怎么把值传给php

WBOY
WBOYOriginal
2016-06-23 14:17:07677Durchsuche

234567891011121314151617	$.getJSON("http://passport.aedu.cn/api/getlogin?callback=?", { uid: encodeURI(userName.val()), pwd: encodeURI(userPwd.val()) }, function (data) {                         if (data.status == 0) {            //成功                                 $("li").hide();                $("#h").hide();                $("#div1").show();                $("#div2").show();                                      //window.location.href = "login.php";                               $("#a").html(data.msg.UserName);                               $("#b").html(data.msg.BlogAddress);            


从jq 里json 取得值,怎么才能传递给php,在线等


回复讨论(解决方案)

你就不能用curl解析http://passport.aedu.cn/api/getlogin?callback=
然后用json_decode()处理吗?

怎么传给php? 是的可以用楼上的方法直接解决 
如果非得用get  那么再取得值后再来个json get 不就好了...

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn