query getJson 读取数据

前端之家收集整理的这篇文章主要介绍了query getJson 读取数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<title>无标题页</title>
<script type="text/javascript" src=\'#\'" /jquery-1.6.2.min.js"></script>

<script type="text/javascript">

$(document).ready(function(){
$("button").click(function(){
$.getJSON("Jsonashx/JsonData.ashx",function(result){
$.each(result,function(i,field){

$.each(field,function(kk,vv) {
$("p").append(vv.buyname + " ");

});


});
});
});
});
</script>

</head> <body> <form id="form1" runat="server"> <button>获得 JSON 数据</button> <p></p> </form> </body> </html>

原文链接:https://www.f2er.com/json/290759.html

猜你在找的Json相关文章