你的心如利箭 在风中笔直的飞翔
github DNS ALEXA CDN
jquery JS CSS CSS3 HTML5 svg php --- isux w3cplus

21270

  博客园  :: 首页  ::  ::  ::  :: 管理

1.json

{
    "current": 2,
    "result": "success"
}

1.html

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
$(function(){
    $("#BTN1").click(function(){
        $.ajax({
            url: "1.json",
            dataType: "json",
            success: function(data){
                if(data === undefined){return false;}
                alert(data.current);
                alert(data.endPage);
            }
        })

    });


});
</script>
</head>
<body>
<h1>调用静态json例子</h1>
<input type="button" value="BTN1" id="BTN1">
</body>
</html>

 

posted on 2014-07-04 11:22  bjhhh  阅读(3345)  评论(0编辑  收藏  举报