


Write 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.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Detailed explanation of jQuery reference method: Quick start guide jQuery is a popular JavaScript library that is widely used in website development. It simplifies JavaScript programming and provides developers with rich functions and features. This article will introduce jQuery's reference method in detail and provide specific code examples to help readers get started quickly. Introducing jQuery First, we need to introduce the jQuery library into the HTML file. It can be introduced through a CDN link or downloaded

How to use PUT request method in jQuery? In jQuery, the method of sending a PUT request is similar to sending other types of requests, but you need to pay attention to some details and parameter settings. PUT requests are typically used to update resources, such as updating data in a database or updating files on the server. The following is a specific code example using the PUT request method in jQuery. First, make sure you include the jQuery library file, then you can send a PUT request via: $.ajax({u

How to remove the height attribute of an element with jQuery? In front-end development, we often encounter the need to manipulate the height attributes of elements. Sometimes, we may need to dynamically change the height of an element, and sometimes we need to remove the height attribute of an element. This article will introduce how to use jQuery to remove the height attribute of an element and provide specific code examples. Before using jQuery to operate the height attribute, we first need to understand the height attribute in CSS. The height attribute is used to set the height of an element

Title: jQuery Tips: Quickly modify the text of all a tags on the page In web development, we often need to modify and operate elements on the page. When using jQuery, sometimes you need to modify the text content of all a tags in the page at once, which can save time and energy. The following will introduce how to use jQuery to quickly modify the text of all a tags on the page, and give specific code examples. First, we need to introduce the jQuery library file and ensure that the following code is introduced into the page: <

jQuery is a fast, small, feature-rich JavaScript library widely used in front-end development. Since its release in 2006, jQuery has become one of the tools of choice for many developers, but in practical applications, it also has some advantages and disadvantages. This article will deeply analyze the advantages and disadvantages of jQuery and illustrate it with specific code examples. Advantages: 1. Concise syntax jQuery's syntax design is concise and clear, which can greatly improve the readability and writing efficiency of the code. for example,

Title: Use jQuery to modify the text content of all a tags. jQuery is a popular JavaScript library that is widely used to handle DOM operations. In web development, we often encounter the need to modify the text content of the link tag (a tag) on the page. This article will explain how to use jQuery to achieve this goal, and provide specific code examples. First, we need to introduce the jQuery library into the page. Add the following code in the HTML file:

How to tell if a jQuery element has a specific attribute? When using jQuery to operate DOM elements, you often encounter situations where you need to determine whether an element has a specific attribute. In this case, we can easily implement this function with the help of the methods provided by jQuery. The following will introduce two commonly used methods to determine whether a jQuery element has specific attributes, and attach specific code examples. Method 1: Use the attr() method and typeof operator // to determine whether the element has a specific attribute

jQuery is a popular JavaScript library that is widely used to handle DOM manipulation and event handling in web pages. In jQuery, the eq() method is used to select elements at a specified index position. The specific usage and application scenarios are as follows. In jQuery, the eq() method selects the element at a specified index position. Index positions start counting from 0, i.e. the index of the first element is 0, the index of the second element is 1, and so on. The syntax of the eq() method is as follows: $("s
