0

上記のテキストフィールドに入力せずに別のテキストフィールドに移動するときはいつでも、on-blur() を使用して警告メッセージを取得する必要があります。Javaスクリプトを使用しています。

4

3 に答える 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);
    }
}

http://jsfiddle.net/5ANnf/2/

https://developer.mozilla.org/en-US/docs/HTML/Forms_in_HTML (at bottom)

于 2013-05-24T06:56:44.727 に答える