上記のテキストフィールドに入力せずに別のテキストフィールドに移動するときはいつでも、on-blur() を使用して警告メッセージを取得する必要があります。Javaスクリプトを使用しています。
user2349515
質問する
589 次
3 に答える
0
If you like to use the html5 form validation take a look at validity
property and set html 5 form attributes like required
html5:
<input type="number" required="true" onfocus="setCustomValidity('Custom Message')" onblur="testit(this)"/>
js:
function testit(e){
if(e.validity.valid == false){
alert(e.validationMessage);
}
}
https://developer.mozilla.org/en-US/docs/HTML/Forms_in_HTML (at bottom)
于 2013-05-24T06:56:44.727 に答える