码迷,mamicode.com
首页 > Web开发 > 详细

jQuery 使用 JSONP

时间:2017-07-05 23:02:57      阅读:311      评论:0      收藏:0      [点我收藏+]

标签:i++   callback   jsonp   jquer   query   body   tom   bsp   head   

<script type="text/javascript">
function callbackFunction(result, methodName)
{
    var html = ‘<ul>‘;
    for(var i = 0; i < result.length; i++)
    {
        html += ‘<li>‘ + result[i] + ‘</li>‘;
    }
    html += ‘</ul>‘;
    document.getElementById(‘divCustomers‘).innerHTML = html;
}
</script>

  

 

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>JSONP 实例</title>
    <script src="http://cdn.static.runoob.com/libs/jquery/1.8.3/jquery.js"></script>    
</head>
<body>
<div id="divCustomers"></div>
<script>
$.getJSON("http://www.runoob.com/try/ajax/jsonp.php?jsoncallback=?", function(data) {
    
    var html = ‘<ul>‘;
    for(var i = 0; i < data.length; i++)
    {
        html += ‘<li>‘ + data[i] + ‘</li>‘;
    }
    html += ‘</ul>‘;
    
    $(‘#divCustomers‘).html(html); 
});
</script>
</body>
</html>

  

jQuery 使用 JSONP

标签:i++   callback   jsonp   jquer   query   body   tom   bsp   head   

原文地址:http://www.cnblogs.com/zhyc010/p/7123705.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!