Created
January 31, 2013 07:51
-
-
Save haruta/4681121 to your computer and use it in GitHub Desktop.
galaxy nexus で maxlenght値=value値の長さ のフォームの場合フォームに対して一切入力できなくなるっぽい。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<form action="" method="post"> | |
exists maxlength: <input type="text" name="age" value="99" maxlength="2" /><br /> | |
textarea: <textarea name="test"></textarea><br /> | |
not exists maxlength: <input type="text" name="zip" value="" /><br /> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment