当前位置:   article > 正文

el-table 内嵌 input 调用 focus 方法无效_focus() 失效

focus() 失效
  1. <template>
  2. <div>
  3. <h4>el-table 内嵌 input 调用 focus 方法无效</h4>
  4. <h4>
  5. <el-table>
  6. <el-table-column label="名称">
  7. <template>
  8. <el-input ref="inputRef" id="inputRef" />
  9. </template>
  10. </el-table-column>
  11. </el-table>
  12. </h4>
  13. </div>
  14. </template>
  15. <script>
  16. export default {
  17. components: {},
  18. props: {},
  19. data() {
  20. return {};
  21. },
  22. mounted() {},
  23. methods: {
  24. getSumreduce() {
  25. //refs都无效
  26. // this.$refs["inputRef"].focus();
  27. // this.$refs["inputRef"][0].focus();
  28. // this.$refs["inputRef"].$el.children[0].focus();
  29. //必须使用id
  30. document.getElementById("inputRef").focus();
  31. },
  32. },
  33. };
  34. </script>
  35. <style scoped lang="scss"></style>
  36. <style></style>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/96508?site
推荐阅读
相关标签
  

闽ICP备14008679号