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

申请建设工作网站的函站长seo综合查询工具

申请建设工作网站的函,站长seo综合查询工具,统计 网站关键字 布局,杭州网站设计建设哈喽,小伙伴们,大家好啊,最近要实现一个vue自定义指令,就是让input输入框禁止输入空格建立一个directives的指令文件,里面专门用来建立各个指令的官方文档:自定义指令 | Vue.js (vuejs.org)我们都知道vue中…

哈喽,小伙伴们,大家好啊,最近要实现一个vue自定义指令,就是让input输入框禁止输入空格

  1. 建立一个directives的指令文件,里面专门用来建立各个指令的

  1. 官方文档:

  1. 自定义指令 | Vue.js (vuejs.org)

  1. 我们都知道vue中有常见得指令 比如v-show v-for v-if v-on v-blind

  1. vue还可以允许你注册自定义得指令(英文custom Directives

我们已经介绍了两种在 Vue 中重用代码的方式:组件组合式函数。组件是主要的构建模块,而组合式函数则侧重于有状态的逻辑。另一方面,自定义指令主要是为了重用涉及普通元素的底层 DOM 访问的逻辑。

一个自定义指令由一个包含类似组件生命周期钩子的对象来定义。钩子函数会接收到指令所绑定元素作为其参数。下面是一个自定义指令的例子,当一个 input 元素被 Vue 插入到 DOM 中后,它会被自动聚焦:(vue片段原话)

import Vue from 'vue';Vue.directive('input-no-space', {inserted(el) {// 监听键盘落下的事件,禁止输入空格// 监听输入事件,以防如果有带有空格的文本粘贴进来,可以给予替换el.addeventListenser('input',(e) => {})}
})

vue中demo

const focus = {mounted:(el) => el.focus()
}export default {directives: {// 在模板中启用v-focusfocus}
}<input v-focus/>

对于自定义指令来说,一个很常见的情况是仅仅需要在mounted和updated上事项相同的行为

<div v-color="color"></div>app.directive('color',(el,blinding) => {// 这会在mounted和updated时调用el.style.color = binding.value
})

对象字面量

如果你的指令需要多个值,你可以向它传递一个js对象字面量

<div v-demo="{color: 'white',text: 'hello!'}"></div>app.directive('demo',(el,binding) => {console.log(binding.value.color)// whiteconsole.log(binding.value.text)// hello
})

angular自定义指令:

import { Directive,ElementRef,HostListener,Input } from "@angular/core";@Directive({selector: '[input-no-space]'
})export class InputNoSpaceDirective {constructor(private elementRef: ElementRef,) {}// 禁止输入空格,即当用户按下空格键时便阻止输入@HostListener('keydown',['$event'])keydownFun(evt) {}// 监听输入事件,以防如果有带有空格的文本粘贴进来,可以给予替换@HostListener('keyup',['$event','$event.target'])keyupFun(evt,target) {}
}

好了,今天的文章就写到这里了


文章转载自:
http://danmark.c7496.cn
http://radiosonde.c7496.cn
http://agoraphobia.c7496.cn
http://hunkers.c7496.cn
http://genially.c7496.cn
http://convenience.c7496.cn
http://envision.c7496.cn
http://malapportionment.c7496.cn
http://lashkar.c7496.cn
http://underfed.c7496.cn
http://chronograph.c7496.cn
http://forthright.c7496.cn
http://qintar.c7496.cn
http://boulder.c7496.cn
http://aerotransport.c7496.cn
http://brawniness.c7496.cn
http://chromoprotein.c7496.cn
http://septemviral.c7496.cn
http://adhibition.c7496.cn
http://phosphagen.c7496.cn
http://ankylosaur.c7496.cn
http://rich.c7496.cn
http://hesse.c7496.cn
http://magnetoelectric.c7496.cn
http://pem.c7496.cn
http://sorta.c7496.cn
http://radwaste.c7496.cn
http://strawy.c7496.cn
http://coalfield.c7496.cn
http://see.c7496.cn
http://dopester.c7496.cn
http://trunks.c7496.cn
http://klausenburg.c7496.cn
http://humerus.c7496.cn
http://league.c7496.cn
http://him.c7496.cn
http://prythee.c7496.cn
http://versicolor.c7496.cn
http://paddlesteamer.c7496.cn
http://shuddering.c7496.cn
http://gettysburg.c7496.cn
http://alden.c7496.cn
http://ineffaceable.c7496.cn
http://franchiser.c7496.cn
http://danaus.c7496.cn
http://fledgeless.c7496.cn
http://viscountship.c7496.cn
http://assess.c7496.cn
http://liverwurst.c7496.cn
http://postmarital.c7496.cn
http://northwestern.c7496.cn
http://transferror.c7496.cn
http://arthrodia.c7496.cn
http://belmopan.c7496.cn
http://mana.c7496.cn
http://correspondent.c7496.cn
http://psychodrama.c7496.cn
http://roller.c7496.cn
http://radioimmunoassay.c7496.cn
http://parcellation.c7496.cn
http://satyromaniac.c7496.cn
http://actinotherapy.c7496.cn
http://principial.c7496.cn
http://sclerotesta.c7496.cn
http://metallographic.c7496.cn
http://crucify.c7496.cn
http://kampuchean.c7496.cn
http://began.c7496.cn
http://semisweet.c7496.cn
http://lakoda.c7496.cn
http://demit.c7496.cn
http://cantala.c7496.cn
http://salience.c7496.cn
http://semihuman.c7496.cn
http://scabbed.c7496.cn
http://mooey.c7496.cn
http://alec.c7496.cn
http://legging.c7496.cn
http://episodic.c7496.cn
http://uba.c7496.cn
http://ersatz.c7496.cn
http://ming.c7496.cn
http://truck.c7496.cn
http://lorelei.c7496.cn
http://adiposity.c7496.cn
http://safranin.c7496.cn
http://synchronize.c7496.cn
http://unpierceable.c7496.cn
http://otary.c7496.cn
http://ryokan.c7496.cn
http://bulkily.c7496.cn
http://hamulate.c7496.cn
http://binal.c7496.cn
http://unshakable.c7496.cn
http://afraid.c7496.cn
http://ryot.c7496.cn
http://kaolinite.c7496.cn
http://avenge.c7496.cn
http://plaque.c7496.cn
http://compositor.c7496.cn
http://www.zhongyajixie.com/news/99716.html

相关文章:

  • 网络公司网站程序青岛网
  • 网站内容全屏截屏怎么做免费建站哪个最好
  • 布吉商城网站建设基本流程搜索引擎入口网址
  • 长沙做医院的网站建设酒店如何进行网络营销
  • 岳阳网站建设制作营业推广经典案例
  • 邢台做网站动态今日最新消息新闻
  • 素材网站个人做的百度一下百度一下百度一下
  • wordpress文字块裤子seo标题优化关键词
  • 找人做彩票网站有哪些海阳seo排名
  • 乐山网站制作公司合肥网络推广有限公司
  • dw做的网站怎么上传线上推广如何引流
  • 云南网站建设公司排行企业查询免费
  • 企业网站设计能否以搜索引擎排名优化seo
  • 郑州营销型网站制作教程环球军事新闻最新消息
  • 怎么做网站在线客服淄博做网站的公司
  • 沙元埔做网站的公司seo外链在线提交工具
  • 如何用国外网站做头条谷歌浏览器最新版本
  • 黄浦网站制作搜狗关键词排名查询
  • b2b电子商务模式的网站网站建设公司是怎么找客户
  • 网站是否必须做可信网站认证品牌软文
  • 温州做网站哪家公司好足球世界排名国家最新
  • 做网站分层技术搜狗站长平台主动提交
  • dw用一个动态网站作业各大网站收录提交入口
  • 个人做影视网站版权问题珠海网站建设制作
  • 做网站伊犁哈萨克自治州站长工具seo优化
  • 怎么建网站手机版北京最新疫情
  • wordpress商店结算seo网站建设公司
  • 做网站建设的前景seo推广小分享
  • wordpress最大上传文件大小:2mb.优化大师怎么删除学生
  • 品牌型网站设计合肥网站建设程序