How to limit the textarea to only hold numbers?

后端 未结 6 649
自闭症患者
自闭症患者 2021-01-18 11:12

I\'m trying to make a date textbox on my blog, and the date is only numbers. I don\'t want anybody making a mistake typing a letter. Is there any way to limit the characters

6条回答
  •  滥情空心
    2021-01-18 11:23

    Yes, you need some JavaScript to do this. I found the JQuery date picker widget very useful to do exactly what you're wanting. The code that used to implement it is:

    html to create the text field and not allow manual manipulation:

    
    

    the JS line binding the picker to the field with a specific format that my server side process is expecting:

    $('#tvpostingdate').datepicker({ dateFormat: "mmddyy"});
    

    You can find more information here: http://jqueryui.com/datepicker/

提交回复
热议问题