我有一个通过网络服务获得的 Json 结果,现在我想看看它是否有效,我如何使 Json 值显示在按钮或链接中?和页面加载?
返回的值之一如下所示:“name”:“Muhammad Ali”,“nickname”:“The Greatest”,
对 json 和 javcascript 来说非常新。
Javascript 和 json :
function Getdata() {
$.ajax({
type: "POST",
data: "{}",
url: "https://raw.github.com/appcelerator/Documentation-Examples/master/HTTPClient/data/json.txt",
contentType: "application/json; cherset=utf-8",
datatype: "json",
success: loadpage,
failure: givealert
});
function loadpage(result) {
if (resu.hasOwnProperty("d")) { result = res.d; }
var data = JQuery.parseJSON(result);
}
function givealert(error) {
alert('failed!!' + error);
}
}
现在我如何让它在标签和表单加载时显示来自 Web 服务的一个值?标签/按钮的 html 标记:
<div id="listheight">
<a type="button" id="routing" href="#datatapage"></a>
</div>
我正在使用 cordova/phonegap、Visual studi2010、html、javascript、css、jquerymobile 和 jquery1.8.2。
提前致谢!