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

Posted 阿鸠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jquary 和Ajax实现简单的异步请求相关的知识,希望对你有一定的参考价值。

代码:

<!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实现简单的异步请求的主要内容,如果未能解决你的问题,请参考以下文章

Ajax的简单实现(JQuary)

移动App,AJAX异步请求,实现简单的增删改查

前端面试题之手写promise

jQuary教程1:jQuary的优点和地位

JavaScrpit中异步请求Ajax实现

JQuery中使用Ajax实现诸如登录名检测等异步请求Demo