Home JS限制字段输入长度
Post
Cancel

JS限制字段输入长度

1
2
3
4
window.onload = function() { 
    document.getElementById("text1").maxLength = 50;
    document.getElementById("text2").maxLength = 200;
};
This post is licensed under CC BY 4.0 by the author.