search
HomeBackend DevelopmentPHP TutorialWrite your own javascript function library Ajax (imitation jquery method), ajaxjquery_PHP tutorial

Write your own javascript function library Ajax (imitation jquery method), ajaxjquery

I am learning php, so I use php and js to demonstrate the code. The main purpose is to exercise my ability to write js and practice my skills.


The following is the code function I wrote to operate ajax. Let me call it a library. .

js code example (tool.ajax.js):

<span> 1</span> <span>/**
</span><span> 2</span> <span> * JS库  使用ajax
</span><span> 3</span> <span> * @author  jlb
</span><span> 4</span> <span> */
</span><span> 5</span> <span>if(typeof tool == 'undefined') {
</span><span> 6</span> <span>    var tool = function(){};
</span><span> 7</span> <span>}
</span><span> 8</span> <span>tool.ajax = function(){};
</span><span> 9</span> 
<span>10</span> 
<span>11</span> <span>/**
</span><span>12</span> <span> * 获取ajax对象
</span><span>13</span> <span> * @return 成功返回ajax对象
</span><span>14</span> <span> */
</span><span>15</span> <span>tool.ajax.getAjaxObject = function () {
</span><span>16</span> <span>    try{return new XMLHttpRequest()}catch(e){}
</span><span>17</span> <span>    try{return new ActiveXOject('Microsoft.XMLHTTP')}catch(e){}
</span><span>18</span> <span>    alert('您的浏览器版本过低!请升级您的浏览器');
</span><span>19</span> <span>}
</span><span>20</span> 
<span>21</span> 
<span>22</span> <span>/**
</span><span>23</span> <span> * ajax提交数据
</span><span>24</span> <span> * @param 参数列表
</span><span>25</span> <span> * @return void
</span><span>26</span> <span> */
</span><span>27</span> <span>tool.ajax.formSubmit = function (options) {
</span><span>28</span> <span>    var allow_param, //允许的参数列表
</span><span>29</span> <span>            HTTP,    //ajax对象
</span><span>30</span> <span>            url,     //请求的地址
</span><span>31</span> <span>            data;    //携带的数据
</span><span>32</span> 
<span>33</span> <span>    allow_param = ['method', 'url', 'data', 'success', 'type'];
</span><span>34</span> <span>    //设置默认值
</span><span>35</span> <span>    if(!options['type']) {
</span><span>36</span> <span>        options['type'] == 'text';
</span><span>37</span> <span>    }
</span><span>38</span> 
<span>39</span> <span>    //处理url与数据,  将数据与URL合并
</span><span>40</span> <span>    var disposeParam = function (list) {
</span><span>41</span> <span>        var data = {url:list['url'],data:''};
</span><span>42</span> <span>        if(list['method'] == 'get') {
</span><span>43</span> <span>            data['data'] += '?';
</span><span>44</span> <span>            for (var i in list['data']) {
</span><span>45</span> <span>                data['data'] +=  i + '=' + list['data'][i] + '&';
</span><span>46</span> <span>            }
</span><span>47</span> <span>        }
</span><span>48</span> <span>        if(list['method'] == 'post') {
</span><span>49</span> <span>            for (var i in list['data']) {
</span><span>50</span> <span>                data['data'] += i + '=' + list['data'][i] + '&';
</span><span>51</span> <span>            }
</span><span>52</span> <span>        }
</span><span>53</span> <span>        return data
</span><span>54</span> <span>    }
</span><span>55</span> <span>    data = disposeParam(options);
</span><span>56</span> <span>    HTTP = tool.ajax.getAjaxObject();
</span><span>57</span> <span>    //ajax回调函数
</span><span>58</span> <span>    HTTP.onreadystatechange = function () {
</span><span>59</span> <span>        if(HTTP.readyState == 4 && HTTP.status == 200) {
</span><span>60</span> <span>            if(options['type'] == 'text') {
</span><span>61</span> <span>                options['success'](HTTP.responseText);
</span><span>62</span> <span>            }
</span><span>63</span> <span>            else if(options['type'] == 'json') {
</span><span>64</span> <span>                options['success'](eval('(' + HTTP.responseText + ')'));
</span><span>65</span> <span>            }
</span><span>66</span> <span>        }
</span><span>67</span> <span>    }
</span><span>68</span> 
<span>69</span> <span>    if(options['method'] == 'get') {
</span><span>70</span> <span>        url = data['url'] + data['data'];
</span><span>71</span> <span>        HTTP.open(options['method'],url);
</span><span>72</span> <span>        //设置请求头解决get提交有缓存问题,通过修改文件最后修改时间解决
</span><span>73</span> <span>        HTTP.setRequestHeader('If-Modified-Since', 0);
</span><span>74</span> <span>        HTTP.send(null);
</span><span>75</span> <span>        return;
</span><span>76</span> <span>    }
</span><span>77</span>     
<span>78</span> <span>    if(options['method'] == 'post') {
</span><span>79</span> <span>        HTTP.open(options['method'], data['url']);
</span><span>80</span> <span>        //设置请求头
</span><span>81</span> <span>        HTTP.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
</span><span>82</span> <span>        HTTP.send(data['data'].replace(/(&*$)/g,''));
</span><span>83</span> <span>        return;
</span><span>84</span> <span>    }
</span><span>85</span> }

Usage example (ajax_test.html):

<span> 1</span> <span><!</span><span>DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"</span><span>></span>
<span> 2</span> <span><</span><span>html </span><span>lang</span><span>="en"</span><span>></span>
<span> 3</span> <span><</span><span>head</span><span>></span>
<span> 4</span>     <span><</span><span>meta </span><span>http-equiv</span><span>="Content-Type"</span><span> content</span><span>="text/html;charset=UTF-8"</span><span>></span>
<span> 5</span>     <span><</span><span>title</span><span>></span>简单ajax功能库用法示例<span></</span><span>title</span><span>></span>
<span> 6</span> <span></</span><span>head</span><span>></span>
<span> 7</span> <span><</span><span>body</span><span>></span>
<span> 8</span>     <span><!--</span><span>引入编写好的tool.ajax.js文件</span><span>--></span>
<span> 9</span>     <span><</span><span>script </span><span>src</span><span>="tool.ajax.js"</span><span>></</span><span>script</span><span>></span>
<span>10</span>     <span><</span><span>script</span><span>></span>
<span>11</span>         <span>//</span><span>ajax_test.html</span>
<span>12</span>        
<span>13</span>         <span>//</span><span>仿jquery方式ajax请求</span>
<span>14</span>         <span>var</span><span> options </span><span>=</span><span> {
</span><span>15</span> <span>            url : </span><span>"</span><span>ajax_test.php</span><span>"</span><span>, </span><span>//</span><span>请求的脚本地址</span>
<span>16</span> <span>            method : </span><span>"</span><span>get</span><span>"</span><span>, </span><span>//</span><span>是get还是post,注意必须是小写哦..懒得转了...</span>
<span>17</span> <span>            data : {name:</span><span>"</span><span>莫问出处丶</span><span>"</span><span>,age: </span><span>20</span><span>}, </span><span>//</span><span> 要携带的数据,只支持json格式</span>
<span>18</span> <span>            success : </span><span>function</span><span> (msg) {  </span><span>//</span><span>请求完毕后回调函数..</span>
<span>19</span> <span>                alert(msg);
</span><span>20</span> <span>            },
</span><span>21</span> <span>            type : </span><span>'</span><span>text</span><span>'</span><span>, </span><span>//</span><span>不写默认就是text,也就是说回调函数携带的数据是字符串.另外就是json</span>
<span>22</span> <span>        };
</span><span>23</span>         
<span>24</span> <span>        tool.ajax.formSubmit(options);
</span><span>25</span>     <span></</span><span>script</span><span>></span>
<span>26</span> <span></</span><span>body</span><span>></span>
<span>27</span> <span></</span><span>html</span><span>></span>

Script code for ajax request (ajax_test.php):

<span>1</span> <?<span>php
</span><span>2</span> <span>//</span><span>ajax_test.php</span>
<span>3</span> <span>echo</span> "名字:{<span>$_GET</span>['name']} 年龄: {<span>$_GET</span>['age']}";

Open the ajax_test.html file in the browser, the browser displays:

名字:莫问出处丶 年龄: 20

If the returned data is in json format, change the value of the type attribute in option to json

If you have any questions, please leave me a comment. It’s my first time writing a blog, so I’m a little excited. I’m a newbie taking the first step.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1103619.htmlTechArticleWrite your own javascript function library Ajax (imitation jquery method), ajaxjquery I am learning php, so I use PHP and JS are used to demonstrate the code. The main purpose is to exercise my ability to write JS and practice my skills...
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
PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

How to make PHP applications fasterHow to make PHP applications fasterMay 12, 2025 am 12:12 AM

TomakePHPapplicationsfaster,followthesesteps:1)UseOpcodeCachinglikeOPcachetostoreprecompiledscriptbytecode.2)MinimizeDatabaseQueriesbyusingquerycachingandefficientindexing.3)LeveragePHP7 Featuresforbettercodeefficiency.4)ImplementCachingStrategiessuc

PHP Performance Optimization Checklist: Improve Speed NowPHP Performance Optimization Checklist: Improve Speed NowMay 12, 2025 am 12:07 AM

ToimprovePHPapplicationspeed,followthesesteps:1)EnableopcodecachingwithAPCutoreducescriptexecutiontime.2)ImplementdatabasequerycachingusingPDOtominimizedatabasehits.3)UseHTTP/2tomultiplexrequestsandreduceconnectionoverhead.4)Limitsessionusagebyclosin

PHP Dependency Injection: Improve Code TestabilityPHP Dependency Injection: Improve Code TestabilityMay 12, 2025 am 12:03 AM

Dependency injection (DI) significantly improves the testability of PHP code by explicitly transitive dependencies. 1) DI decoupling classes and specific implementations make testing and maintenance more flexible. 2) Among the three types, the constructor injects explicit expression dependencies to keep the state consistent. 3) Use DI containers to manage complex dependencies to improve code quality and development efficiency.

PHP Performance Optimization: Database Query OptimizationPHP Performance Optimization: Database Query OptimizationMay 12, 2025 am 12:02 AM

DatabasequeryoptimizationinPHPinvolvesseveralstrategiestoenhanceperformance.1)Selectonlynecessarycolumnstoreducedatatransfer.2)Useindexingtospeedupdataretrieval.3)Implementquerycachingtostoreresultsoffrequentqueries.4)Utilizepreparedstatementsforeffi

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools