Heim  >  Fragen und Antworten  >  Hauptteil

vue.js – Ein von vue entwickeltes Projekt. Ich möchte die Eingabe automatisch fokussieren, wenn die Seite geöffnet wird. Ich verwende die offiziellen benutzerdefinierten Anweisungen, aber der Test auf dem echten iOS-Computer ist ungültig.

Vue.directive('focus', {
  // 当绑定元素插入到 DOM 中。
  inserted: function (el) {
    // 聚焦元素
    el.focus()
  }
})
<input type="text" v-focus>
某草草某草草2686 Tage vor2789

Antworte allen(3)Ich werde antworten

  • 为情所困

    为情所困2017-07-06 10:38:42

    可以使用autofocus="autofocus"

    Antwort
    0
  • 我想大声告诉你

    我想大声告诉你2017-07-06 10:38:42

    According to this page, autofocus is not supported in iphone/ipad for usability reasons.

    根据 这篇文章 autofocus 或者 el.focus() 因为使用体验问题,苹果不让在 iphone/ipad 上用。因为 focus,可能会带来页面缩放,打开页面,突然缩放,体验太差,大苹果不能忍受吧。

    Antwort
    0
  • 三叔

    三叔2017-07-06 10:38:42

    手动搞一波呗..
    mounted() {
    xxx.focus()
    }

    Antwort
    0
  • StornierenAntwort