• <tfoot id='26yms68c'></tfoot>

    1. <i id='jumkidnr'><tr id='6bfs4qoz'><dt id='sqct5jkc'><q id='pc8z2t4k'><span id='n1cbfudi'><b id='b1b4mwfo'><form id='xvuv4w53'><ins id='cq5l6cky'></ins><ul id='8a74c96i'></ul><sub id='k7hroexs'></sub></form><legend id='i6cfg8ji'></legend><bdo id='9q8xzvcg'><pre id='afxxjwnn'><center id='1wlgzmsr'></center></pre></bdo></b><th id='5ry6iba4'></th></span></q></dt></tr></i><div id='tisl36xo'><tfoot id='ve7k43je'></tfoot><dl id='c5wg2260'><fieldset id='fwan04k8'></fieldset></dl></div>

    2. <small id='6qmjjoh5'></small><noframes id='330ff49b'>

      1. <legend id='kcj4chdc'><style id='l3l1p9r4'><dir id='yer12yq8'><q id='jbbqs2xx'></q></dir></style></legend>
          <bdo id='n7izpegf'></bdo><ul id='idnrmofc'></ul>
      2. 欢迎来到入门教程网!

        其它综合

        当前位置:主页 > 网络编程 > 其它综合 >

        jquery步骤,jquery方法

        来源:本站原创|时间:2023-04-02|栏目:其它综合|点击:

        jquery的使用方法

        使用步骤如下:

        1.jQuery给放到一个文件夹里面,方便我们待会引用这个jQuery,这里我就放到我项目的js文件夹里面。

        2.然后我们来开始编辑HTML界面代码。

        3.使用script标签把jQuery引入到我们的HTML界面。src引号里面的就是我们的jQuery路径名称。

        4.接着再书写一个script标签对,里面写上jQuery入口函数,这样,当我们的HTML加载完成之后就会执行我们的jQuery代码

        jquery ajax请求的五个步骤

        1、使用ajax发送数据的步骤

        第一步:创建异步对象

        var xhr = new XMLHttpRequest();

        第二步:设置 请求行 open(请求方式,请求url):

        // get请求如果有参数就需要在url后面拼接参数,

        // post如果有参数,就在请求体中传递 xhr.open("get","validate.php?username="+name)

        xhr.open("post","validate.php");

        第三步:设置请求(GET方式忽略此步骤)头:setRequestHeader()

        // 1.get不需要设置

        // 2.post需要设置请求头:Content-Type:application/x-www-form-urlencoded

        xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");

        第四步:设置请求体 send()

        // 1.get的参数在url拼接了,所以不需要在这个函数中设置

        // 2.post的参数在这个函数中设置(如果有参数)

        xhr.send(null) xhr.send("username="+name);

        第五步:让异步对象接收服务器的响应数据

        一个成功的响应有两个条件:

        xhr.onreadystatechange = function(){  

            if(xhr.status == 200 xhr.readyState == 4){ 

                 console.log(xhr.responseText); 

         }

        ajax-get方式请求案例:

        var xhr = new XMLHttpRequest(); 

        xhr.open("get","validate.php?username="+name); 

        xhr.send(null); 

        xhr.onreadystatechange = function(){ 

             if(xhr.status == 200 xhr.readyState == 4){

          

                 console.log(xhr.responseText);

                    document.querySelector(".showmsg").innerHTML = xhr.responseText;;

                 }

         }

        ajax-post方式请求案例:

        var xhr = new XMLHttpRequest();

        xhr.open("post","validate.php");

        xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");

        xhr.send("username="+name);

        xhr.onreadystatechange = function(){

        // 判断服务器是否响应,判断异步对象的响应状态

        if(xhr.status == 200 xhr.readyState == 4){

        document.querySelector(".showmsg").innerHTML = xhr.responseText;

        }

        }

        二、Jquery中的Ajax

        $.ajax({

        type: "get",// get或者post

        url: "abc.php",// 请求的url地址

        data: {},//请求的参数

        dataType: "json",//json写了jq会帮我们转换成数组或者对象 他已经用JSON.parse弄好了

        timeout: 3000,//3秒后提示错误

        beforeSend: function () {

        // 发送之前就会进入这个函数

        // return false 这个ajax就停止了不会发 如果没有return false 就会继续

        },

        success: function (data) { // 成功拿到结果放到这个函数 data就是拿到的结果

        },

        error: function () {//失败的函数

        },

        complete: function () {//不管成功还是失败 都会进这个函数

        }

        })

        // 常用

        $.ajax({

        type: "get",

        url: "",

        data: {},

        dataType: "json",

        success: function (data) {

        }

        })

        $.ajax() 都可以发

        $.post(url,data,success,datatype):本质上只能发送post请求

        $.get(url,data,success,datatype):本质上只能发送get请求

        应用jQuery进行编程的一般步骤是什么

        使用jquery很简单。

        你只要在你的页面head里面引用jquery.js库,然后再根据它的API里面提供的语法,来进行你要的编程就可以了。使用jquery比使用原生的JavaScript要简洁的多,而且可以避免一些浏览器的兼容性问题。

        jquery项目怎么部署

        自己搭建一个jQuery的项目的步骤:

        一:创建远程仓库

        二:将远程仓库克隆到本地

        三:搭建项目源文件目录结构

        四:添加gulp功能(请保证电脑全局安装了NodeJS否则使用不了npm命令)

        五:生成.gitignore文件

        六:提交初始版本(本地版本库)

        七:推送到远程仓库

        你在公司是怎么用jquery的?

        在公司使用jQuery插件,使用方法有如下几个步骤:

        一、调用库文件

        使用jQuery必须链接jQuery的库文件,无论是压缩版还是正常版,必须至少在网页中链接一个,如:

        script type="text/javascript" src="jquery.js"/script

        二、调用Jquery插件

        应用做好的jQuery插件效果。

        比如jQuery官网制作的插件jQuery,在使用它时不仅要链接库文件,还要链接UI文件以及UI的CSS文件。

      3. <legend id='1m4aylc5'><style id='vwu82weq'><dir id='pcvjd0ai'><q id='cgms1q0m'></q></dir></style></legend>

          <small id='n64fwjsw'></small><noframes id='8mdm3a9g'>

            • <bdo id='69n32wt3'></bdo><ul id='ya9vke1u'></ul>

                <tfoot id='ggcnzk32'></tfoot>
              1. <i id='oosc68tf'><tr id='ijubx6a1'><dt id='1vaakkgj'><q id='nr688o49'><span id='7pyaammb'><b id='1vtozgqk'><form id='faw33fcm'><ins id='lu186n6a'></ins><ul id='fd9wbwp7'></ul><sub id='pv25kpgw'></sub></form><legend id='dikm6bw2'></legend><bdo id='f7spq7h0'><pre id='ygeyks1m'><center id='k02r24ya'></center></pre></bdo></b><th id='ifw9ks23'></th></span></q></dt></tr></i><div id='sgum3yep'><tfoot id='qi4z7z4z'></tfoot><dl id='3gnudl1v'><fieldset id='37fn5tmn'></fieldset></dl></div>
                    <tbody id='ch2ezm59'></tbody>

                  上一篇:小程序jquery,小程序开发公司

                  栏    目:其它综合

                  下一篇:jquery点击展开,js点击展开

                  本文标题:jquery步骤,jquery方法

                  本文地址:https://www.xiuzhanwang.com/a1/qitazonghe/17131.html

                  网页制作CMS教程网络编程软件编程脚本语言数据库服务器

                  如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

                  联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

                  Copyright © 2002-2020 脚本教程网 版权所有

                • <i id='zuwopqxx'><tr id='okmgyrom'><dt id='dat09wjl'><q id='c4d44wr4'><span id='zveemoyc'><b id='pddhgayg'><form id='4596vwh0'><ins id='ocdokisi'></ins><ul id='75enlj6t'></ul><sub id='hkiobe2q'></sub></form><legend id='2nl2u9n2'></legend><bdo id='kjdoq6n0'><pre id='hr3e7ip4'><center id='kne4fmp5'></center></pre></bdo></b><th id='jsm9m6bh'></th></span></q></dt></tr></i><div id='yoruoc9l'><tfoot id='ynm9z974'></tfoot><dl id='3dnc9l8c'><fieldset id='m1f2qjtv'></fieldset></dl></div>
                    <tfoot id='xpqf3o65'></tfoot>

                        <bdo id='xjj6sk8y'></bdo><ul id='pp7a11g8'></ul>
                    1. <legend id='4dqhzymn'><style id='3yuhirs9'><dir id='26834euu'><q id='n90uolo0'></q></dir></style></legend>

                      <small id='zpsgfxi8'></small><noframes id='4d7ikrm0'>