5.3 自定义指令
1. 为何需要自定义指令?
内置指令不满足需求
2. 自定义指令的语法规则(获取元素焦点)
| Vue.directive('focus' { |
| inserted: function(el) { |
| } |
| }) |
3.自定义指令用法
| <input type="text" v-focus> |
例:
| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Document</title> |
| </head> |
| <body> |
| <div id="app"> |
| <input type="text" v-focus> |
| <input type="text"> |
| </div> |
| <script type="text/javascript" src="js/vue.js"></script> |
| <script type="text/javascript"> |
| |
| |
| |
| Vue.directive('focus', { |
| inserted: function(el){ |
| |
| el.focus(); |
| } |
| }); |
| var vm = new Vue({ |
| el: '#app', |
| data: { |
| |
| }, |
| methods: { |
| handle: function(){ |
| |
| } |
| } |
| }); |
| </script> |
| </body> |
| </html> |
4. 带参数的自定义指令(改变元素背景色)
| Vue.directive(‘color', { |
| inserted: function(el, binding) { |
| el.style.backgroundColor = binding.value.color; |
| } |
| }) |
5. 指令的用法
| <input type="text" v-color='{color:"orange"}'> |
例:
| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Document</title> |
| </head> |
| <body> |
| <div id="app"> |
| <input type="text" v-color='msg'> |
| </div> |
| <script type="text/javascript" src="js/vue.js"></script> |
| <script type="text/javascript"> |
| |
| |
| |
| Vue.directive('color', { |
| bind: function(el, binding){ |
| |
| |
| el.style.backgroundColor = binding.value.color; |
| } |
| }); |
| var vm = new Vue({ |
| el: '#app', |
| data: { |
| msg: { |
| color: 'blue' |
| } |
| }, |
| methods: { |
| handle: function(){ |
| |
| } |
| } |
| }); |
| </script> |
| </body> |
| </html> |
| |
5. 局部指令
| directives: { |
| focus: { // 指令的定义 |
| inserted: function (el) { |
| el.focus() |
| } |
| } |
| } |
例:
| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Document</title> |
| </head> |
| <body> |
| <div id="app"> |
| <input type="text" v-color='msg'> |
| <input type="text" v-focus> |
| </div> |
| <script type="text/javascript" src="js/vue.js"></script> |
| <script type="text/javascript"> |
| |
| |
| |
| var vm = new Vue({ |
| el: '#app', |
| data: { |
| msg: { |
| color: 'red' |
| } |
| }, |
| methods: { |
| handle: function(){ |
| |
| } |
| }, |
| directives: { |
| color: { |
| bind: function(el, binding){ |
| el.style.backgroundColor = binding.value.color; |
| } |
| }, |
| focus: { |
| inserted: function(el) { |
| el.focus(); |
| } |
| } |
| } |
| }); |
| </script> |
| </body> |
| </html> |
| |
【推荐】2025 HarmonyOS 鸿蒙创新赛正式启动,百万大奖等你挑战
【推荐】博客园的心动:当一群程序员决定开源共建一个真诚相亲平台
【推荐】开源 Linux 服务器运维管理面板 1Panel V2 版本正式发布
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 他没买 iPad,而是花了半年时间,为所有“穷学生”写了个笔记神器
· Visual Studio 现已支持新的、更简洁的解决方案文件(slnx)格式
· 从 Redis 客户端超时到 .NET 线程池挑战:饥饿、窃取与阻塞的全景解析
· 2025年中总结:我想我克服公众演讲的恐惧了,一个社恐分子突破自我的故事
· 3.1k star!推荐一款开源基于AI实现的浏览器自动化插件工具 !