vue中文字框自動獲取焦點

|天上白玉京|發表於2020-11-20

在vue中要使文字框自動獲取焦點可用如下程式碼實現

this.$nextTick(_ => {
	this.$refs.newKeywordInput.$refs.input.focus()
})

其中this.$nextTick是頁面重新渲染完成之後才會執行的回撥函式。
javascript執行機制可以檢視參考這篇文章
js執行機制

相關文章