Detailed explanation of user non-refresh login method based on jquery ajax_jquery
WBOY
Release: 2016-05-16 17:54:02
Original
1294 people have browsed it
The Ajax framework is a collection that provides modular implementation of Ajax functions. The Ajax framework can be implemented in various languages (for example, SAJAX has implementations in various languages). Ajax is only a part of jquery.
$.ajax({ type:'post',/ /Optional get url:'action.php',//This is the PHP program that receives data data:'data='dsa',//The data passed to PHP, multiple parameters are connected with & dataType:'text',//The data type returned by the server can be XML, Json jsonp script html text, etc. success:function(msg){ //Here is the PHP program after the ajax submission is successful The returned data processing function. msg is the returned data, and the data type is defined in the dataType parameter! }, error:function(){ Ajax submission failure processing function! >})
Analysis of advantages and disadvantages of using jquery ajax
Advantages Small, the compressed code is only more than 20k (uncompressed code is 94k). Convenience of Selector and DOM operations: jQuery's Selector compared with mootools' Element.Selectors.js, CSS Selector, XPath Selector (deleted after 1.2) Chaining: Always returns a jQuery object, which can be operated continuously. The documentation is complete and easy to use (each API has complete examples, which is unmatched by other frameworks now), and there are many other documents and books on the Internet. It is widely used, including google code also uses jQuery.
Site using jQuery: http://docs.jquery.com/Sites_Using_jQuery Core development team and core personnel: John Resig, etc. Concise and short syntax, easy to remember. Extensibility: There are a large number of user-developed plug-ins available (http://jquery.com/plugins/) jQuery UI (http://jquery.com/plugins/, based on jQuery, but Core jQuery is independent) and is constantly being developed. Friendly and active community: google groups: http://docs.jquery.com/Discussion There are many convenient methods for event handling, such as click, instead of a single addEvent and the like.
Disadvantages Since the design idea is to pursue efficiency and simplicity, there is no object-oriented extension. The design idea is different from Mootools. CSS Selector is a little slow (but now the speed has been greatly improved)
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