gpt4 book ai didi

javascript - 如何在 lit-element 中聚焦纸张输入

转载 作者:行者123 更新时间:2023-12-03 07:13:28 26 4
gpt4 key购买 nike

我有一个 <paper-input>我希望在页面加载时选择的页面上的元素。我试图在页面首次更新时将其聚焦,但没有奏效。

firstUpdated() {
this.shadowRoot.querySelector('#input').focus();
}

The paper-input page建议设置 tabindex input.focus() 是必需的工作,所以我也这样做了,但没有用。我还尝试了为 this SO question 建议的解决方案关于paper-input在聚合物中,但没有一个起作用。

有没有办法聚焦 paper-input在 lit-element 中?

最佳答案

我有一个正在使用的 hack,我可能不会在生产中使用它,但它也许可以作为灵感。

focusDescription() {
let descriptionElement = this.shadowRoot.getElementById("description") as any
let descriptionInputElement = descriptionElement.inputElement.children[0]
descriptionInputElement.inputElement.children[0].focus()
}

关于javascript - 如何在 lit-element 中聚焦纸张输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57277809/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com