在 Rails 中使用 datetime_select 的替代方法
我不太喜欢使用 datetime_select。我认为它看起来很难看并且在回发时不容易处理。
大多数人如何应对?使用纯文本框并使用 javascript 将输入验证为日期不是更容易吗?我会将其保留为日期时间值。
I'm not such a fan of using datetime_select. I think it renders ugly and isn't easy to deal with on post back.
How do most people deal with it? Wouldn't it be easier to use a plain textbox and use javascript to validate the input as a date? I will be persisting it as a DateTime value.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用了带有 jquery 日期选择器的文本框,一切都很好。
I used a text box with a jquery datepicker and all was well in the universe.