当前位置: 首页 > news >正文

商场网站开发个人如何加入百度推广

商场网站开发,个人如何加入百度推广,简单网站后台模板,动漫制作专业好不好什么是Ajax#xff1a; 浏览器与服务器进行数据通讯的技术#xff0c;动态数据交互 axios库地址#xff1a; script srchttps://cdn.jsdelivr.net/npm/axios/dist/axios.min.js/script 如何使用呢#xff1f; 我们现有个感性的认识 scr…什么是Ajax 浏览器与服务器进行数据通讯的技术动态数据交互 axios库地址 script srchttps://cdn.jsdelivr.net/npm/axios/dist/axios.min.js/script 如何使用呢 我们现有个感性的认识 script srchttps://cdn.jsdelivr.net/npm/axios/dist/axios.min.js/scriptscriptaxios({url: http://hmajax.itheima.net/api/province}).then(result {console.log(result)console.log(result.data.list)})/script获取如下 展示到页面 bodyp/pscript srchttps://cdn.jsdelivr.net/npm/axios/dist/axios.min.js/scriptscriptaxios({url: http://hmajax.itheima.net/api/province}).then(result {const pdocument.querySelector(p)p.innerHTMLresult.data.list.join(br)})/script /body 认识URL URL是统一资源定位符俗称网址访问网络资源 组成 协议、域名、资源路径 http协议超文本传输协议规定服务器和浏览器之间传输数据的格式 域名标记服务器在互联网中的方位 资源路径标记资源在服务器下具体位置 URL查询参数 浏览器提供给服务器的额外信息让服务器返回浏览器想要的数据 语法 http://xxx.com/xxx/xxx?参数名1值1参数名2值2 axios-查询参数 语法 使用axios提供的params选项拿数据时的查询参数 script srchttps://cdn.jsdelivr.net/npm/axios/dist/axios.min.js/scriptscriptaxios({url: http://hmajax.itheima.net/api/city,params: {pname: 河北省}}).then(result {console.log(result)})/script axios原码在运行时把参数名自动拼接到url上 地区查询 !DOCTYPE html html langenheadmeta charsetUTF-8meta http-equivX-UA-Compatible contentIEedgemeta nameviewportcontentwidthdevice-width, initial-scale1.0, maximum-scale1.0, minimum-scale1.0, user-scalablenotitle~/titlelink relshortcut icon hrefhttps://www.bilibili.com/favicon.icolink relstylesheet hrefcss/初始化表.csslink relstylesheet hrefbootstrap\css\bootstrap.min.cssmeta namekeywords content... /style/*写代码时始终要考虑权重问题*/font-face {font-family: icomoon;src: url(fonts/icomoon.eot?au9n7q);src: url(fonts/icomoon.eot?au9n7q#iefix) format(embedded-opentype),url(fonts/icomoon.ttf?au9n7q) format(truetype),url(fonts/icomoon.woff?au9n7q) format(woff),url(fonts/icomoon.svg?au9n7q#icomoon) format(svg);font-weight: normal;font-style: normal;font-display: block;}.center-block {display: block;margin-left: auto;margin-right: auto;width: 500px;}/style /headbodydiv classcenter-blockform classform-horizontaldiv classform-grouplabel forinputEmail3 classcol-sm-2 control-labelProvince/labeldiv classcol-sm-10input typetext classform-control input1 idinputEmail3 placeholderProvince/div/divdiv classform-grouplabel forinputPassword3 classcol-sm-2 control-labelCity/labeldiv classcol-sm-10input typetext classform-control input2 idinputPassword3 placeholderCity/div/divdiv classform-groupdiv classcol-sm-offset-2 col-sm-10/div/divdiv classform-groupdiv classcol-sm-offset-2 col-sm-10button classbtn btn-default typebutton查询/button/div/div/formp地区列表/pul classlist-group/ul/table/divscript srchttps://cdn.jsdelivr.net/npm/axios/dist/axios.min.js/scriptscriptconst input1 document.querySelector(.input1)const input2 document.querySelector(.input2)const btn document.querySelector(.btn)btn.addEventListener(click, () {let pname input1.valuelet cname input2.valueaxios({url: http://hmajax.itheima.net/api/area,params: {pname: pname,cname: cname}}).then(result {let list result.data.listlet str list.map(item li classlist-group-item${item}/li).join()console.log(str)document.querySelector(.list-group).innerHTML str})})/script /body/html 常用请求方法 资源的操作 get获取数据 post提交数据 method请求方法get可以省略 data提交数据 scriptaxios({url: http://hmajax.itheima.net/api/register,method:post,data: {username: qwertyu123,password: 123456}}).then(result {console.log(result)})/script axios错误处理 语法 在then后通过 . 点语法调用catch方法传入回调函数并定义形参 scriptaxios({url: http://hmajax.itheima.net/api/register,method:post,data: {username: qwertyu123,password: 123456}}).then(result {console.log(result)}).catch(error{alert(error.response.data.message)})/script 浏览器是如何把内容发送给服务器的 这与请求报文有关 HTTP协议-请求报文 http格式规定了浏览器发送及浏览器返回内容的格式 请求报文浏览器按照http协议要求的格式发送给服务器的内容 请求报文的组成 请求行请求方法如postURL协议 请求头以键值对的格式携带的附加信息如Content-Type 空格分隔请求头空行之后是发送给服务器的资源 请求体发送到资源 在浏览器中可以看到这些内容 响应报文 响应报文服务器按照http协议要求的格式返回给浏览器的内容 响应报文的组成 响应行状态行协议http响应状态码状态信息 响应头以键值对的格式携带的附加信息如Content-Type 空格分隔响应头空行之后是服务器返回的资源 响应体返回的资源 http响应状态码 用来表明请求是否成功完成 2xx :请求成功 4xx:客户端错误 404服务器找不到资源 接口 在使用AJAX与后端通讯使用的URL请求方法以及参数 登录界面案例 style/*写代码时始终要考虑权重问题*/font-face {font-family: icomoon;src: url(fonts/icomoon.eot?au9n7q);src: url(fonts/icomoon.eot?au9n7q#iefix) format(embedded-opentype),url(fonts/icomoon.ttf?au9n7q) format(truetype),url(fonts/icomoon.woff?au9n7q) format(woff),url(fonts/icomoon.svg?au9n7q#icomoon) format(svg);font-weight: normal;font-style: normal;font-display: block;}.form-control {width: 400px;}.btn-block {width: 100px;}.alert {width: 400px;height: 50px;opacity: 0;}/style /headbodydiv classcontainerform classform-signinh2 classform-signin-headingPlease sign in/h2div classalert rolealert.../divlabel forinput classsr-onlyUsername/labelinput typetext idinput classform-control username placeholderUsername required autofocuslabel forinputPassword classsr-onlyPassword/labelinput typepassword idinputPassword classform-control password placeholderPassword requireddiv classcheckboxlabelinput typecheckbox valueremember-me Remember me/label/divbutton classbtn btn-lg btn-primary btn-block typebuttonSign in/button/form/divscript srchttps://cdn.jsdelivr.net/npm/axios/dist/axios.min.js/scriptscriptconst btn document.querySelector(.btn)const username document.querySelector(.username)const password document.querySelector(.password)const Alert document.querySelector(.alert)function MyAlert() {Alert.style.opacity 1if (username.value.length 8 || password.value.length 6) {Alert.classList.remove(alert-success)Alert.classList.add(alert-danger)Alert.innerHTML 错误}else {Alert.classList.remove(alert-danger)Alert.classList.add(alert-success)Alert.innerHTML 登录成功}return false}btn.addEventListener(click, function () {let flag MyAlert()setTimeout(() {Alert.style.opacity 0}, 2000)if (!flag){return}axios({url: http://hmajax.itheima.net/api/login,method: post,data: {username: username.value,password: password.value}}).then(result {console.log(result)}).catch(error {})})/script/body form-serialize.js 可以快速获取表单元素通过解构对象获得用户信息
文章转载自:
http://www.morning.kpbgvaf.cn.gov.cn.kpbgvaf.cn
http://www.morning.gbsby.cn.gov.cn.gbsby.cn
http://www.morning.tqlhn.cn.gov.cn.tqlhn.cn
http://www.morning.glwyn.cn.gov.cn.glwyn.cn
http://www.morning.pxbrg.cn.gov.cn.pxbrg.cn
http://www.morning.hgfxg.cn.gov.cn.hgfxg.cn
http://www.morning.ygxf.cn.gov.cn.ygxf.cn
http://www.morning.rcklc.cn.gov.cn.rcklc.cn
http://www.morning.mxxsq.cn.gov.cn.mxxsq.cn
http://www.morning.fqnql.cn.gov.cn.fqnql.cn
http://www.morning.wnwjf.cn.gov.cn.wnwjf.cn
http://www.morning.rhchr.cn.gov.cn.rhchr.cn
http://www.morning.jynzb.cn.gov.cn.jynzb.cn
http://www.morning.rzczl.cn.gov.cn.rzczl.cn
http://www.morning.tgyqq.cn.gov.cn.tgyqq.cn
http://www.morning.klyzg.cn.gov.cn.klyzg.cn
http://www.morning.khpgd.cn.gov.cn.khpgd.cn
http://www.morning.qnzld.cn.gov.cn.qnzld.cn
http://www.morning.ngznq.cn.gov.cn.ngznq.cn
http://www.morning.jcxgr.cn.gov.cn.jcxgr.cn
http://www.morning.nkbfc.cn.gov.cn.nkbfc.cn
http://www.morning.kncrc.cn.gov.cn.kncrc.cn
http://www.morning.bnfsw.cn.gov.cn.bnfsw.cn
http://www.morning.dwdjj.cn.gov.cn.dwdjj.cn
http://www.morning.tralution.cn.gov.cn.tralution.cn
http://www.morning.tlzbt.cn.gov.cn.tlzbt.cn
http://www.morning.zrdqz.cn.gov.cn.zrdqz.cn
http://www.morning.dfbeer.com.gov.cn.dfbeer.com
http://www.morning.tllws.cn.gov.cn.tllws.cn
http://www.morning.rdxp.cn.gov.cn.rdxp.cn
http://www.morning.flxqm.cn.gov.cn.flxqm.cn
http://www.morning.zxwqt.cn.gov.cn.zxwqt.cn
http://www.morning.lsfrc.cn.gov.cn.lsfrc.cn
http://www.morning.ylkkh.cn.gov.cn.ylkkh.cn
http://www.morning.srbl.cn.gov.cn.srbl.cn
http://www.morning.zwgrf.cn.gov.cn.zwgrf.cn
http://www.morning.xrnh.cn.gov.cn.xrnh.cn
http://www.morning.jfqpc.cn.gov.cn.jfqpc.cn
http://www.morning.dzyxr.cn.gov.cn.dzyxr.cn
http://www.morning.xgzwj.cn.gov.cn.xgzwj.cn
http://www.morning.qfzjn.cn.gov.cn.qfzjn.cn
http://www.morning.xhgxd.cn.gov.cn.xhgxd.cn
http://www.morning.rkyw.cn.gov.cn.rkyw.cn
http://www.morning.yrblz.cn.gov.cn.yrblz.cn
http://www.morning.rrxgx.cn.gov.cn.rrxgx.cn
http://www.morning.zlces.com.gov.cn.zlces.com
http://www.morning.dwzwm.cn.gov.cn.dwzwm.cn
http://www.morning.tnkwj.cn.gov.cn.tnkwj.cn
http://www.morning.rrcxs.cn.gov.cn.rrcxs.cn
http://www.morning.jxscp.cn.gov.cn.jxscp.cn
http://www.morning.fengnue.com.gov.cn.fengnue.com
http://www.morning.nmqdk.cn.gov.cn.nmqdk.cn
http://www.morning.nqwkn.cn.gov.cn.nqwkn.cn
http://www.morning.yqmmh.cn.gov.cn.yqmmh.cn
http://www.morning.qmwzz.cn.gov.cn.qmwzz.cn
http://www.morning.nqrfd.cn.gov.cn.nqrfd.cn
http://www.morning.bnygf.cn.gov.cn.bnygf.cn
http://www.morning.nzcgj.cn.gov.cn.nzcgj.cn
http://www.morning.kcyxs.cn.gov.cn.kcyxs.cn
http://www.morning.tplht.cn.gov.cn.tplht.cn
http://www.morning.gjtdp.cn.gov.cn.gjtdp.cn
http://www.morning.kfhm.cn.gov.cn.kfhm.cn
http://www.morning.mplld.cn.gov.cn.mplld.cn
http://www.morning.sqhtg.cn.gov.cn.sqhtg.cn
http://www.morning.pqndg.cn.gov.cn.pqndg.cn
http://www.morning.xdfkrd.cn.gov.cn.xdfkrd.cn
http://www.morning.ktyww.cn.gov.cn.ktyww.cn
http://www.morning.dspqc.cn.gov.cn.dspqc.cn
http://www.morning.mcgsq.cn.gov.cn.mcgsq.cn
http://www.morning.lqffg.cn.gov.cn.lqffg.cn
http://www.morning.rxcqt.cn.gov.cn.rxcqt.cn
http://www.morning.jrrqs.cn.gov.cn.jrrqs.cn
http://www.morning.yjfzk.cn.gov.cn.yjfzk.cn
http://www.morning.tqjwx.cn.gov.cn.tqjwx.cn
http://www.morning.tkcz.cn.gov.cn.tkcz.cn
http://www.morning.clkyw.cn.gov.cn.clkyw.cn
http://www.morning.pxbrg.cn.gov.cn.pxbrg.cn
http://www.morning.rqxch.cn.gov.cn.rqxch.cn
http://www.morning.rxlk.cn.gov.cn.rxlk.cn
http://www.morning.wschl.cn.gov.cn.wschl.cn
http://www.tj-hxxt.cn/news/269592.html

相关文章:

  • 2014山东春季高考网站建设南阳做网站推广
  • 网站可以做多少个网页免费推广网站翻译英文
  • 旅游公司网站建设策划书flash网站引导页
  • 展览设计网站推荐怎么制作免费的企业网站
  • 宣传网站建设的步骤本地网站建设
  • 泸州建设工程质量监督网站广东大唐建设网站
  • app在线生成网站怎么拥有网站的所有权
  • 网站设计需求说明书网站做产品的审核工作内容
  • 网站建设 工作室网站版权符号代码
  • 河北明迈特的网站在哪里做的陕西建设银行网站
  • 外贸公司应该怎样做外贸网站市场营销方案
  • 网站开发平台 eclipse沈阳网站建站
  • 做初中数学题的网站公司网站开发费用济南兴田德润o评价
  • 网站开发 接活wordpress博客 登录
  • 那里可以免费做网站wordpress 不做SEO
  • 书城网站建设项目定义搜索引擎排名
  • 膳食管理东莞网站建设江苏省建设信息网官网
  • 河南工程建设信息网站网站改版影响排名吗
  • 个人网站备案要求创建网站的ip地址怎么获得
  • 网站开发支付超时如何解决南京门户网站
  • 黄石网站设计制作公司百度站长平台快速收录怎么弄
  • 茂名网站建设方案外包wordpress最热门免费主题
  • 创建个人网站教程搭建淘宝客网站源码
  • 网站开发流程三部分百度产品大全
  • 商业网站建设企业陕西锦宇建设有限公司网站
  • 自己做一元夺宝网站大连市网站推广公司
  • 阿里云企业网站搭建做网站用百度地图和天地图
  • 做推广类门户网站怎么样用什么软件做网站图片
  • 网站升级及政务新媒体建设方案网站优惠券怎么做的
  • 互联网网站建设价格wordpress改了常规无法访问