HTMLButtonElement: formNoValidate プロパティ

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

formNoValidateHTMLButtonElement インターフェイスのプロパティで、<form> がこの <button> から送信されたとき、制約検証を回避するかどうかを示す論理値です。この <button> 要素の formnovalidate 属性を反映します。

この値は、このボタンからフォームを送信する場合、 HTMLFormElement インターフェイスの noValidate プロパティを上書きします。このプロパティは値を受け取ったり設定したりすることができます。

論理値です。

js
const buttonElement = document.getElementById("myButton");
console.log(buttonElement.formNoValidate);

仕様書

Specification
HTML Standard
# dom-fs-formnovalidate

ブラウザーの互換性

BCD tables only load in the browser

関連情報