我从我的api回复中得到了以下JSON回复
{
"status": "success",
"mobile": "+14567878888",
"address": "usa"
}
我使用
将我的JSON响应转换为php Variable$content = file_get_contents($url);
$json = json_decode($content, true);
现在我想在jquery中的请求页面中使用那个php变量如何在Jquery中显示我的变量?
$(document).ready(function(){
// var number = <?php echo json['mobile']; ?>;
// alert(number);
// These codes do not work for me and
// How to display mobile number inside div writing code here and i want alert
});
<div id="display"></div>