Home  >  Article  >  Web Front-end  >  Show progress on Ajax request

Show progress on Ajax request

php中世界最好的语言
php中世界最好的语言Original
2018-04-25 14:40:542201browse

This time I will bring you the progress of the Ajax request. What are the precautions for showing the progress of the Ajax request? The following is a practical case, let's take a look.

Ajax is used more and more frequently in Web applications. In the process of making Ajax calls, there is generally this approach: display a GIF image animation to indicate that the background is working, and at the same time prevent the user from operating this page (for example, the Ajax request is triggered by a certain button, and the user cannot frequently click the button to generate multiple concurrent Ajax request); after the call is completed, the picture disappears and the current page is re-edited. The following figure is an example. The page loads data through an Ajax request through a Load link (left). When the user clicks the link, the Ajax request starts, the GIF image displays the "Loading" status, and the current page is "covered" to prevent the user from continuing to click the Load button (middle); the Ajax request is completed and the response result is returned, and the result is presented. At the same time, the GIF image and the "mask" disappear at the same time (right).

Source code download

Here I also take the ASP.NET MVC application as an example to provide a simple implementation method. Our GIF images and

as masks are defined in the layout file, and the corresponding CSS is customized for them. The z-index of GIF and mask

are set to 2000 and 1000 respectively (this is arbitrary, as long as the mask

can cover the current page and the GIF image is displayed on the top layer). The latter can cover the entire page by setting position, top, bottom, left and right, and set its background to black.

  
  
    
      @ViewBag.Title  
         
      ...
    
            

@RenderBody()

             

       
Then we define another method ajax2 for jQuery to implement Ajax calls through the following code. This method still calls $.ajax(options) to implement Ajax calls. In the ajax2 method, we "encapsulate" the complete attribute of the options parameter, so that the displayed GIF image and mask

can be hidden. At the same time, the async attribute of options is overridden, so that it is always executed asynchronously, because only in this way can the browser not be locked and GIF can be displayed normally. Before calling $.ajax(options) to make an Ajax request, we display the GIF image and mask

and position it in the center. The transparency of the mask

is set accordingly, so the effect shown above (middle) will appear.

 
  
    
      ...
      
      
    
    ...   
Now when making an Ajax call, you only need to call $.ajax2. The following is the registration code for the click event of the "Load" link in the example:

  Load
  

  
Believe it or not After reading the case in this article, you have mastered the method. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Recommended reading:

How to operate Ajax to return HTML tag style

ajax asynchronous download file

The above is the detailed content of Show progress on Ajax request. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn