如何不允许使用 jQuery 在文本输入字段中输入内容?

发布于 2024-08-24 17:00:54 字数 251 浏览 9 评论 0原文

我在文本输入字段上使用 jQuery 日期选择器,我不想让用户使用键盘更改文本输入框中的任何文本。

这是我的代码:

$('#rush_needed_by_english').keydown(function() {
  //code to not allow any changes to be made to input field
});

如何使用 jQuery 不允许在文本输入字段中进行键盘输入?

I am using the jQuery datepicker on a text input field and I don't want to let the user change any of the text in the text input box with the keyboard.

Here's my code:

$('#rush_needed_by_english').keydown(function() {
  //code to not allow any changes to be made to input field
});

How do I not allow keyboard typing in a text input field using jQuery?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

迷爱 2024-08-31 17:00:54
$('#rush_needed_by_english').keydown(function() {
  //code to not allow any changes to be made to input field
  return false;
});
$('#rush_needed_by_english').keydown(function() {
  //code to not allow any changes to be made to input field
  return false;
});
<逆流佳人身旁 2024-08-31 17:00:54

您可以简单地将该字段设置为只读:

$('#rush_needed_by_english').attr('readonly', 'readonly');

如果您使用的是 jQuery 1.6+,则应该使用 prop() 方法:

$('#rush_needed_by_english').prop('readOnly', true); 
// careful, the property name string 'readOnly' is case sensitive!

或者放弃 jQuery 并使用纯 JavaScript:

document.getElementById('rush_needed_by_english').readOnly = true;

You could simply make the field read-only with:

$('#rush_needed_by_english').attr('readonly', 'readonly');

If you're using jQuery 1.6+, you should use the prop() method instead:

$('#rush_needed_by_english').prop('readOnly', true); 
// careful, the property name string 'readOnly' is case sensitive!

Or ditch jQuery and use plain JavaScript:

document.getElementById('rush_needed_by_english').readOnly = true;
荆棘i 2024-08-31 17:00:54

你可以:

$('#rush_needed_by_english').attr('disabled', 'disabled');

You could:

$('#rush_needed_by_english').attr('disabled', 'disabled');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文