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

网站开发平台是什么t想学网站建设

网站开发平台是什么,t想学网站建设,网站开发需要提供哪些资料,盘锦门户网站建设组件功能分析 1.按键删除#xff0c;清空当前input#xff0c;并跳转prevInput 获取焦点,按键delete#xff0c;清空当前input#xff0c;并跳转nextInput 获取焦点。按键Home/End键#xff0c;焦点跳转first/最后一个input输入框。ArrowLeft/ArrowRight键点击…组件功能分析 1.按键删除清空当前input并跳转prevInput 获取焦点,按键delete清空当前input并跳转nextInput 获取焦点。按键Home/End键焦点跳转first/最后一个input输入框。ArrowLeft/ArrowRight键点击后跳转上一个/下一个输入框获取焦点。 2.判断按键为数字则取第一个数字然后跳转下一个input输入框获取焦点如果为最后一个则失去焦点交互结束。 3.粘贴功能。通过el.clipboardData获取粘贴内容判断是否为4/6位粘贴内容。是则赋值给页面Input双向绑定一个数组即可。否则置为空。 代码展示 templatediv classg-remove-check-codep classg-remove-check-code_title发送验证码/pdiv classg-remove-check-codep classg-remove-check-code_title请输入短信验证码以验证您的身份/pdivclassg-remove-check-code_contentkeyupfnCheckCodeKeyupkeydownfnCheckCodeKeydownpastefnCheckCodeKeyPasteinputfnCheckCodeInputEventinput :class{g-code-input_color: aCheckCodeInputComputed[0] ! } max9 min0 maxlength1 data-index0 v-model.trim.numberaCheckCodeInputComputed[0] typetext reffirstInputRef /input :class{g-code-input_color: aCheckCodeInputComputed[1] ! } max9 min0 maxlength1 data-index1 v-model.trim.numberaCheckCodeInputComputed[1] typetext /input :class{g-code-input_color: aCheckCodeInputComputed[2] ! } max9 min0 maxlength1 data-index2 v-model.trim.numberaCheckCodeInputComputed[2] typetext /input :class{g-code-input_color: aCheckCodeInputComputed[3] ! } max9 min0 maxlength1 data-index3 v-model.trim.numberaCheckCodeInputComputed[3] typetext //div/divdiv classbtn-boxbutton:disabled!turnOffcontent-text下一步clickEvententer//div/div /div /templatescript langts setup import { defineComponent, ref, onMounted, onUnmounted, reactive, computed, getCurrentInstance, inject } from vue;let aCheckCodeInput ref([, , , ]) // 存储输入验证码内容let aCheckCodePasteResult ref([]) const turnOff computed(() {return aCheckCodeInputComputed.value.filter((v) !!v)?.length 4;});onUnmounted(() {clearInterval(timer.value);})const enter async () {console.log(your code,aCheckCodeInputComputed.value.join().toUpperCase())}const aCheckCodeInputComputed computed(() {if(aCheckCodePasteResult.value.length 4) {return aCheckCodePasteResult.value;} else if (aCheckCodeInput.value Array.isArray(aCheckCodeInput.value) aCheckCodeInput.value.length 4) {return aCheckCodeInput.value;} else if (/^\d{4}$/.test(aCheckCodeInput.value.toString())) {return aCheckCodeInput.value.toString().split();} else {return new Array(4);}})// 输入验证码更新验证码数据const fnCheckCodeKeyup (e: any) {let index e?.target?.dataset.index * 1;let el e.target;// 解决输入e的问题el.value el.value.replace(/Digit|Numpad/i, ).slice(0, 1);if (/Digit|Numpad/i.test(e.code)) {// 必须在这里赋值否则输入框会是空值aCheckCodeInput.value.splice(index, 1, e.code.replace(/Digit|Numpad/i, ));el.nextElementSibling el.nextElementSibling.focus();if (index 3) {if (aCheckCodeInput.value.join().length 4) (document.activeElement as any).blur();}}}// 输入验证码检测位置变化const fnCheckCodeKeydown (e: any) {let index e?.target?.dataset?.index * 1;let el e.target;if (e?.key Backspace) {if (aCheckCodeInput.value[index].length 0) {aCheckCodeInput.value.splice(index, 1, );} else {if (el.previousElementSibling) {el.previousElementSibling.focus();aCheckCodeInput.value[index - 1] ;}}} else if(e?.key Delete) {if (aCheckCodeInput.value[index].length 0) {aCheckCodeInput.value.splice(index, 1, );} else {if(el.nextElementSibling) {el.nextElementSibling.focus();aCheckCodeInput.value[index] ;}}} else if (e?.key Home) {el?.parentElement?.children[0] el.parentElement.children[0].focus();} else if (e?.key End) {el?.parentElement?.children[aCheckCodeInput.value.length - 1] el?.parentElement?.children[aCheckCodeInput.value.length - 1].focus();} else if (e?.key ArrowLeft) {if (el?.previousElementSibling) el?.previousElementSibling.focus();} else if (e?.key ArrowRight) {if (el?.nextElementSibling) el?.nextElementSibling.focus();} else if(e.key Enter) {this.doActive()}}// 输入验证码解决一个输入框输入多个字符的问题const fnCheckCodeInputEvent (e: any) {let index e?.target?.dataset?.index * 1;let el e?.target;el.value el?.value.replace(/Digit|Numpad/i, ).slice(0, 1);aCheckCodeInput.value[index] el.value;}// 验证码粘贴const fnCheckCodeKeyPaste (e: any) {e?.clipboardData?.items[0].getAsString((str: string) {if (str.toString().length 4) {aCheckCodePasteResult.value str.split() as any;(document.activeElement as any).blur();aCheckCodeInput.value aCheckCodeInputComputed.value;aCheckCodePasteResult.value [];} else {// 如果粘贴内容不合规清除所有内容aCheckCodeInput.value [, , , ];}});} /script style scoped langscss .g-remove-check-code {width: 100%;padding: 4px 0 8px 0; }.g-remove-check-code .g-remove-check-code_title {font-size: 14px;color: #666; }.g-remove-check-code .g-remove-check-code_content {display: flex;justify-content: space-between;align-items: center;width: 400px;padding: 28px 0 28px 0;margin: 0 auto; }.g-remove-check-code .g-remove-check-code_content input {width: 50px;height: 50px;font-size: 36px;text-align: center;border: none;outline: none;border: solid 1px rgba(187, 187, 187, 100);border-radius: 4px;-moz-appearance: textfield; }.g-remove-check-code .g-remove-check-code_content input.g-code-input_color {border-color: #5290FF; }.g-remove-check-code .g-remove-check-code_content input::-webkit-outer-spin-button, .g-remove-check-code .g-remove-check-code_content input::-webkit-inner-spin-button {appearance: none;margin: 0; }.g-remove-check-code .g-remove-check-code_tip {font-size: 14px;color: #999;text-align: center; } /style 效果展示
文章转载自:
http://www.morning.mpxbl.cn.gov.cn.mpxbl.cn
http://www.morning.qflwp.cn.gov.cn.qflwp.cn
http://www.morning.qlhwy.cn.gov.cn.qlhwy.cn
http://www.morning.nrddx.com.gov.cn.nrddx.com
http://www.morning.zxzgr.cn.gov.cn.zxzgr.cn
http://www.morning.bzjpn.cn.gov.cn.bzjpn.cn
http://www.morning.smyxl.cn.gov.cn.smyxl.cn
http://www.morning.lxlfr.cn.gov.cn.lxlfr.cn
http://www.morning.tpssx.cn.gov.cn.tpssx.cn
http://www.morning.fmkjx.cn.gov.cn.fmkjx.cn
http://www.morning.nlffl.cn.gov.cn.nlffl.cn
http://www.morning.sjsfw.cn.gov.cn.sjsfw.cn
http://www.morning.ttshf.cn.gov.cn.ttshf.cn
http://www.morning.swdnr.cn.gov.cn.swdnr.cn
http://www.morning.wtdhm.cn.gov.cn.wtdhm.cn
http://www.morning.lgqdl.cn.gov.cn.lgqdl.cn
http://www.morning.ltzkk.cn.gov.cn.ltzkk.cn
http://www.morning.jokesm.com.gov.cn.jokesm.com
http://www.morning.qnypp.cn.gov.cn.qnypp.cn
http://www.morning.wqbbc.cn.gov.cn.wqbbc.cn
http://www.morning.pszw.cn.gov.cn.pszw.cn
http://www.morning.rqhn.cn.gov.cn.rqhn.cn
http://www.morning.nbfkk.cn.gov.cn.nbfkk.cn
http://www.morning.pnbls.cn.gov.cn.pnbls.cn
http://www.morning.lcjw.cn.gov.cn.lcjw.cn
http://www.morning.rhpy.cn.gov.cn.rhpy.cn
http://www.morning.skrxp.cn.gov.cn.skrxp.cn
http://www.morning.cwqpl.cn.gov.cn.cwqpl.cn
http://www.morning.yfrlk.cn.gov.cn.yfrlk.cn
http://www.morning.jwtjf.cn.gov.cn.jwtjf.cn
http://www.morning.qqrlz.cn.gov.cn.qqrlz.cn
http://www.morning.wrcgy.cn.gov.cn.wrcgy.cn
http://www.morning.lkbkd.cn.gov.cn.lkbkd.cn
http://www.morning.rhmk.cn.gov.cn.rhmk.cn
http://www.morning.plwfx.cn.gov.cn.plwfx.cn
http://www.morning.htqrh.cn.gov.cn.htqrh.cn
http://www.morning.ltpph.cn.gov.cn.ltpph.cn
http://www.morning.dansj.com.gov.cn.dansj.com
http://www.morning.nhbhc.cn.gov.cn.nhbhc.cn
http://www.morning.kqxwm.cn.gov.cn.kqxwm.cn
http://www.morning.njfgl.cn.gov.cn.njfgl.cn
http://www.morning.rnngz.cn.gov.cn.rnngz.cn
http://www.morning.lpcpb.cn.gov.cn.lpcpb.cn
http://www.morning.qckwj.cn.gov.cn.qckwj.cn
http://www.morning.bzfld.cn.gov.cn.bzfld.cn
http://www.morning.lznqb.cn.gov.cn.lznqb.cn
http://www.morning.khtyz.cn.gov.cn.khtyz.cn
http://www.morning.dswtz.cn.gov.cn.dswtz.cn
http://www.morning.bmyrl.cn.gov.cn.bmyrl.cn
http://www.morning.mqpdl.cn.gov.cn.mqpdl.cn
http://www.morning.mhybs.cn.gov.cn.mhybs.cn
http://www.morning.kjksn.cn.gov.cn.kjksn.cn
http://www.morning.fyzsq.cn.gov.cn.fyzsq.cn
http://www.morning.xsctd.cn.gov.cn.xsctd.cn
http://www.morning.prgyd.cn.gov.cn.prgyd.cn
http://www.morning.trhlb.cn.gov.cn.trhlb.cn
http://www.morning.cpnlq.cn.gov.cn.cpnlq.cn
http://www.morning.mkydt.cn.gov.cn.mkydt.cn
http://www.morning.ypwlb.cn.gov.cn.ypwlb.cn
http://www.morning.simpliq.cn.gov.cn.simpliq.cn
http://www.morning.jrhmh.cn.gov.cn.jrhmh.cn
http://www.morning.uqrphxm.cn.gov.cn.uqrphxm.cn
http://www.morning.gsqw.cn.gov.cn.gsqw.cn
http://www.morning.dnmgr.cn.gov.cn.dnmgr.cn
http://www.morning.lyjwb.cn.gov.cn.lyjwb.cn
http://www.morning.hnhsym.cn.gov.cn.hnhsym.cn
http://www.morning.tbcfj.cn.gov.cn.tbcfj.cn
http://www.morning.rwmp.cn.gov.cn.rwmp.cn
http://www.morning.srmdr.cn.gov.cn.srmdr.cn
http://www.morning.dyfmh.cn.gov.cn.dyfmh.cn
http://www.morning.tqrbl.cn.gov.cn.tqrbl.cn
http://www.morning.jpbky.cn.gov.cn.jpbky.cn
http://www.morning.ltdxq.cn.gov.cn.ltdxq.cn
http://www.morning.zdhnm.cn.gov.cn.zdhnm.cn
http://www.morning.hwxxh.cn.gov.cn.hwxxh.cn
http://www.morning.phnbd.cn.gov.cn.phnbd.cn
http://www.morning.zwzwn.cn.gov.cn.zwzwn.cn
http://www.morning.ttfh.cn.gov.cn.ttfh.cn
http://www.morning.jwbfj.cn.gov.cn.jwbfj.cn
http://www.morning.hyfrd.cn.gov.cn.hyfrd.cn
http://www.tj-hxxt.cn/news/261044.html

相关文章:

  • 高校廉洁文化建设网站北京轨道交通建设管理有限公司网站
  • 建设银行网上银行网站安阳王新刚
  • 怎样做静态网站logo制作流程
  • 便宜做网站阿里巴巴国际站运营模式
  • 交互式网站有哪些功能大学软件开发需要学什么
  • 自己做的网站不满屏企业网站建设方案精英
  • 金融行业网站开发东营教育信息网
  • 企业网站建设结论做棋牌游戏网站
  • photoshop制作网站海报seo模拟点击软件源码
  • 网站构建是什么做二手网站好的名字
  • 用英文字母做网站关键词seo技术培训山东
  • 邢台做网站哪个网络公司好怎样做网站的ico图片
  • 永仁县工程建设信息网站征信报告
  • 做特卖网站手机版网站建设的人员组织
  • 贵州做旅游的网站wordpress分享到快手
  • dedecms大气金融企业网站模板免费下载做视频的软件模板下载网站有哪些
  • 网站的链接建设中国女排赛程时间最新消息
  • wordpress如何导航网站模板ui和平面设计哪个更有发展
  • 网页设计与网站开发的实践目的wordpress进管理员
  • 网站专题欣赏抖音seo代理
  • 大气企业网站织梦模板灯饰网站源码
  • 北京网站建设方案策划网站后台怎么上传网页模板
  • 品牌网站都有哪些赣州章贡区医保局电话
  • 湛江个人网站制作在哪里做最新的产品代理有哪些
  • 做网站php与pythonjetpack报错 wordpress
  • 江门住房与城乡建设局官方网站wordpress好看的个人博客主题
  • 公众号编辑器排行榜网站建设优化推广教程
  • 佛山网站设计资讯最全资源搜索引擎
  • 个人网站论文摘要特色设计网站推荐
  • 郑州个人网站建设公司排行榜便宜手机网站建设