我是这个 jquery 和 phonegap 的新手。我发现从本地服务器解析 .php 文件中的数据几乎没有困难。请帮助我这样做。
这是我的 index.html 页面:
<!DOCTYPE HTML>
<html>
<h2>JSON Parser</h2>
<script type="text/javascript" src="jquery.js"/></script>
<script type="text/javascript">
function parseJSON()
{
var json;
$.ajax({
type: 'POST',
url: 'http://192.168.1.12/training/services/login.php',
cache: false,
// data: $('#abc').serialize(),
dataType: 'json',
success: function(data){
alert(data);
$('#data').append(data);
}
});
}
</script>
</head>
<body onload="parseJSON()">
<p>Employee's Information</p>
<form id="abc" method ="post">
<div id="data"></div>
</form>
</body>
</html>
login.php 文件包含一个示例 json 数据,如下所示:
{"username":"test@test.com","password":"password"}