如何将值yes或no返回给 php 函数。如果不能,我可以使用 curl 执行相同的 jsonp 功能吗?
$.ajax({
url: 'www.example.com/trck.php',
type: 'GET',
data: 'adrs='+getHost( document.domain ),
dataType: 'jsonp',
jsonp: false,
jsonpCallback: 'methodCallback',
success: function( data ) {
if( data.message == "yes" ) { return yes;
} else {
return no;
}
},
error: function( error ) {
console.log( error );
}
});
return the value **yes** or **no** to php function
我的意思是我可以有 php 函数来调用上面的 ajax 脚本获取它的返回值..
编辑
经过一番研究后,我知道我无法将 ajax 值返回给 php 函数。
我可以在 curl 中使用与 ajax 相同的功能吗?怎么做?