目前我正在使用jQuery從Web API獲取信息到Web應用程序的項目。無法使用jquery從json文件中獲取數據
<script src="jquery-1.11.2.js"></script>
<script src="jquery-1.11.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
jQuery.support.cors = true;
$("#btn").click(function() {
$.ajax({
url: "http://localhost:52227/api/Values",
type: "GET",
dataType: "json",
success: function (data) {
alert("hello");
}
});
});
});
</script>
<body>
<form id="form1" runat="server">
<div>
<input type="button" id="btn" value="submit" />
</div>
</form>
當我運行該應用程序它沒有顯示我任何輸出。
如果你把這個網址到瀏覽器'''「HTTP://本地主機:52227/API/Values'''什麼是屏幕顯示 –
我得到我的網站的XML格式? API 通 用戶 –
好了,所以它是XML,JSON不 –