jQuery 日期选择器,其中文本输入是只读的

发布于 2024-08-31 01:05:22 字数 207 浏览 7 评论 0原文

我想使用 Jquery 日期选择器。我已经使用 alt 字段选项进行了设置。我在文本字段中显示 D/M/Y,但提交 YMD。到目前为止,一切工作正常,发送正确的数据等。

但是我想阻止用户手动输入日期。我最初将 INPUT 字段设置为禁用,该字段适用于除 IE 之外的所有浏览器。在 IE 中,它会弹出日期选择器,但单击日期后不会关闭。

有谁知道最好的方法来做到这一点?

I want to use the Jquery datepicker. I've got it setup using an the alt field option. I'm displaying D/M/Y in the text field, but submitting Y-M-D. Everything works fine so far, sending the correct data, etc.

However I want to stop the user from being able to manually type a date. I had originally set the INPUT field to disabled, which worked in every browser except IE. In IE it would popup the date picker but then not close after clicking a date.

Does anyone know the best way to do this?

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

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

发布评论

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

评论(4

作妖 2024-09-07 01:05:22

为了防止用户手动编辑输入,我将附加一个按键事件并返回 false/阻止其处理程序的默认值。
这样,如果他有 javascript,他可以使用日期选择器,如果没有,他可以手动编辑输入。

$("#input-id").keypress(function (e)
{
    e.preventDefault();
});

To prevent the user from manually editing the input, I would attach a keypress event and return false / prevent default from it's handler.
This way if he has javascript he can use the datepicker, and if not he can manually edit the input.

$("#input-id").keypress(function (e)
{
    e.preventDefault();
});
半步萧音过轻尘 2024-09-07 01:05:22

扩展 nc3b 的答案:

$("#input-id").keydown(function (e)
{e.preventDefault();});

将阻止诸如退格键、删除键等键。否则,您可能有一个像 11/11/2012 这样的日期,并且用户可以将其退格到 11/11/201,从技术上讲,这仍然是一个有效的日期给JS。

Extending nc3b's answer:

$("#input-id").keydown(function (e)
{e.preventDefault();});

will prevent keys such as backspace, delete, etc. Otherwise, you could have a date like 11/11/2012, and a user could backspace it to 11/11/201 and technically, thats still a valid date according to JS.

离旧人 2024-09-07 01:05:22

您还可以执行以下操作:

<input type="text" id="datepicker" name="datepicker" readonly="readonly" />

请参阅上面的 readonly 属性。

如果您还希望日历在 获得焦点时显示,请添加以下内容:

$("#datepicker").datepicker({ showOn: 'both' });

You can also do this:

<input type="text" id="datepicker" name="datepicker" readonly="readonly" />

See the readonly attribute above.

If you also want the calendar to show when the <input> has focus, add this:

$("#datepicker").datepicker({ showOn: 'both' });
小嗲 2024-09-07 01:05:22

禁用输入字段后,使用 destroy 方法删除日期选择器。重新启用该字段时,只需再次重新创建日期选择器即可。

$("#target").datepicker("destroy");

After disabling the input field, use the destroy method to remove the datepicker. When re-enabling the field, just re-create the datepicker again.

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