日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學無先后,達者為師

網站首頁 編程語言 正文

element ui table 內嵌 input 調用 focus 方法無效

作者:qq_42431718 更新時間: 2022-02-11 編程語言

element ui table 內嵌 input 調用 focus 方法無效

<el-table>
  <el-table-column label="名稱">
    <template>
      <el-input ref="inputRef" />
    </template>
  </el-table-column>
</el-table>

// 無效
this.$refs['inputRef'].focus()
this.$refs['inputRef'][0].focus()
this.$refs['inputRef'].$el.children[0].focus()

// 有效
<el-input id="inputRef" />
document.getElementById('inputRef').focus()

原文鏈接:https://blog.csdn.net/qq_42431718/article/details/120697533

欄目分類
最近更新