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> |
| |
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
【推荐】AI 的力量,开发者的翅膀:欢迎使用 AI 原生开发工具 TRAE
【推荐】2025 HarmonyOS 鸿蒙创新赛正式启动,百万大奖等你挑战
· 博客园出海记-开篇:扬帆启航
· 微软开源的 MCP 教程「GitHub 热点速览」
· 记一次 .NET 某汽车控制焊接软件 卡死分析
· C#中的多级缓存架构设计与实现深度解析
· 关于布尔类型的变量不要加 is 前缀,被网友们吐槽了,特来完善下