当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery ajaxStart()用法及代码示例


ajaxStart()方法用于指定AJAX请求启动时要运行的函数。
用法:

$(document).ajaxStart(function())

参数::仅需一个参数。

  • function():它指定启动Ajax请求时要运行的函数。

The demo.txt file stored on server and it will load after clicking the change content button.
The content of demo.txt are:
This is GFG.



示例1:本示例通过从服务器获取数据来更改元素的内容。当请求开始时,页面显示AJAX请求已开始。

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
    <script> 
        $(document).ready(function() { 
            $(document).ajaxStart(function() { 
                alert("AJAX request started"); 
            }); 
            $("button").click(function() { 
                $("#paragraph").load( 
                  "demo.txt"); 
            }); 
        }); 
    </script> 
    <style> 
        body { 
            text-align: center; 
        } 
    </style> 
</head> 
  
<body> 
    <div id="div_content"> 
        <h1 style="color: green;"> 
          GeeksforGeeks</h1> 
        <p id="paragraph" 
           style="font-size: 20px;"> 
            A computer science portal for geeks 
        </p> 
    </div> 
    <button>Change Content 
  </button> 
</body> 
  
</html>

输出:

  • 在点击按钮之前
  • 点击按钮后

示例2:本示例通过从服务器获取数据来更改元素的内容。当请求开始时,页面显示AJAX请求已开始。

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
    <script> 
        $(document).ready(function() { 
            $(document).ajaxStart(function() { 
                alert("AJAX request started"); 
            }); 
            $("button").click(function() { 
                $("#paragraph").load( 
                  "demo.txt"); 
            }); 
        }); 
    </script> 
    <style> 
        body { 
            text-align: center; 
        } 
    </style> 
</head> 
  
<body> 
    <div id="div_content"> 
        <h1 style="color: green;"> 
          GeeksforGeeks 
      </h1> 
        <p id="paragraph" 
           style="font-size: 20px;"> 
            A computer science 
          portal for geeks 
        </p> 
    </div> 
    <button>Change Content 
  </button> 
</body> 
  
</html>

输出:

  • 在点击按钮之前
  • 点击按钮后



相关用法


注:本文由纯净天空筛选整理自PranchalKatiyar大神的英文原创作品 jQuery | ajaxStart() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。