我在文本输入字段上使用jQuery datepicker,我不想让用户使用键盘更改文本输入框中的任何文本.
这是我的代码:
$('#rush_needed_by_english').keydown(function() { //code to not allow any changes to be made to input field });
如何使用jQuery不允许在文本输入字段中键入键盘?
解决方法
$('#rush_needed_by_english').keydown(function() { //code to not allow any changes to be made to input field return false; });