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

Jquary 和Ajax实现简单的异步请求

时间:2017-07-22 19:42:36      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:btn   back   htm   script   button   trap   test   cti   click   

代码:

<!DOCTYPE html>

<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Ajax测试</title>
     <link   rel="stylesheet" href="../demo1/bootstrap/css/bootstrap.css">
  <script src="jq/jQueryDownload/jquery.min.js"></script>
</head>
<body>
<button  id="sb"  type="button" class="btn btn-info">信息按钮</button>

<script>
 $(document).ready(function(){
        $("#sb").click(function(){
            $.post("http://localhost/demo2/test1.php",{
                        name:"印第安老斑鸠",
                        url:"http://www.laobanjiu.com"
                    },
                    function(data,status){
                        alert("数据: \n" + data + "\n状态: " + status);
                    });
        });
    });
</script>
</body>
</html>

 

Jquary 和Ajax实现简单的异步请求

标签:btn   back   htm   script   button   trap   test   cti   click   

原文地址:http://www.cnblogs.com/zhengweizhao/p/7222171.html

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