ajax测试程序

前端之家收集整理的这篇文章主要介绍了ajax测试程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

记录一个ajax的一个测试程序

<!DOCTYPE html>
<html>
    <head>
        <Meta charset="UTF-8">
        <title></title>
        <% #include virtual="/include/page.html"%>
    </head>
    <body>
        <button class="btn">按钮</button>

        <script> $(".btn").click(function(){ console.log("ajax func"); $.ajax({ url: 'status.asp',async:true,dataType: 'json',type: 'post',data:{"StatusType":"2"},success: function(data) { console.log(data); console.log("2"); },error: function(xhr,type,errorThrown) { console.log("加载失败2"); } }); }); </script>

    </body>
</html>
原文链接:https://www.f2er.com/ajax/161274.html

猜你在找的Ajax相关文章