• 自定义指令,获取焦点


    // 对Vue的全局指令, 进行封装
    // 封装中间件函数插件
    const directiveObj = {
      install (Vue) {
        Vue.directive('focus', {
          // el代表指令所在标签
          // 指令所在标签, 被插入到真实DOM时才触发, 如果标签用display:none隐藏再出现, 不会在触发inserted的
          inserted (el) {
            // 指令所在van-search组件
            // 组件根标签是div, input在内部
            // 以上都是原生标签对象
            // 搜索页面 el是div
            // 文章评论 el是textarea
            // 以后el还可能是input呢
            // 知识点: 原生DOM.nodeName 拿到标签名字 (注意: 大写的字符串)
            if (el.nodeName === 'TEXTAREA' || el.nodeName === 'INPUT') {
              el.focus()
            } else {
              // el本身不是输入框, 尝试往里获取一下
              setTimeout(() => {
                const theInput = el.querySelector('input')
                const theTextArea = el.querySelector('textarea')
                // 判断: 不一定能获取得到, 需要加判断, 有值了, 再执行.focus()才不报错
                if (theInput) theInput.focus()
                if (theTextArea) theTextArea.focus()
              })
            }
          },
          update (el) { // 指令所在标签, 被更新时触发
            if (el.nodeName === 'TEXTAREA' || el.nodeName === 'INPUT') {
              el.focus()
            } else {
              // el本身不是输入框, 尝试往里获取一下
              setTimeout(() => {
                const theInput = el.querySelector('input')
                const theTextArea = el.querySelector('textarea')
                // 判断: 不一定能获取得到, 需要加判断, 有值了, 再执行.focus()才不报错
                if (theInput) theInput.focus()
                if (theTextArea) theTextArea.focus()
              })
            }
          }
        })
      }
    }
    
    export default directiveObj
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48

    在main。js中全局注册就好了
    import directiveObj from ‘./utils/directive’
    Vue.use(directiveObj)

  • 相关阅读:
    七段显示译码器
    Spring事务传播特性
    电流继电器JL-8GB/11/AC220V
    批处理修改win10密码以及密码提示
    TRex学习之旅一
    9个值得收藏的WebGL性能优化技巧
    @data注解的作用
    webpack学习笔记(十)模块与依赖
    Leetcode1462-课程表 IV
    SonarLint(代码质量检测工具+案例+好习惯养成器)
  • 原文地址:https://blog.csdn.net/kilito_01/article/details/126106590