0
有人可以幫我弄清楚如何在我的$.each
之後適合這塊javascript以適合我的需求嗎?我的JSON數組可以在我的javascript中聲明的url中找到。任何幫助深表感謝!Json Phonegap Api
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.getJSON("http://quickcutsystem.com/quotesapp-home/?json=1",function(result){
$.each(result, function(i, field){
$("#output").append("Title: "+ field.title + " duration: "+field.id +" Price:"+field.price+"<br/>");
});
});
});
</script>
</head>
<body>
<div id="output"></div>
</body>
</html>
謝謝循環,那很完美!我很感激! –