6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

autofillによる入力値であるかの判定

Posted at

フォームの入力値がブラウザのautofill機能によるものかは、フォームが:-webkit-autofillセレクタを持っているかで判定できる。
Firefoxの場合は:-webkit-autofillセレクタを取得できないが、autofill時に発生するinputイベントにdetailプロパティ(マウスイベント、キーイベントの場合のみ含まれている)が存在するかで判定できる。

function hasAutofill(input, detail) {
  var isAutofilled = false;

  try {
    isAutofilled = Boolean(input.parentNode.querySelector(':-webkit-autofill'));
  } catch (e) {
    // firefoxはautofillセレクタが取得できないので、detailプロパティ(マウスイベント、キーイベントの場合のみ含まれている)が存在するかで判定する
    isAutofilled = Boolean(detail === 'undefined');
  }

  return isAutofilled;
}

function onInput(e) {
  var detail = typeof e.detail;
  console.log(hasAutofill(e.target, detail));
}
6
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?