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

用JSON方式回调服务器

时间:2015-08-08 10:15:51      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

<script language="javascript">
$(function(){
    $.getJSON(http://xxx/system/ecmall_install.php?update=xxx,function(){});
    $.getJSON(http://xxx/system/notice2.php?charset=sc-utf-8,function(data){
        var message=‘‘;
        $.each(data,function(i){
            message += <li> + data[i] + </li>;
        });
        $(#news).html(message);
    });
});
</script>
<dt>ECMall 动态</dt>
<dd>
    <ul id="news">
    </ul>
</dd>

用JSON方式回调服务器

标签:

原文地址:http://www.cnblogs.com/eastson/p/4712527.html

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