从 html 控件中删除 jquery datepicker
我在文本框 txtDate 上有一个日期选择器。如果选中了特定的复选框 chkBox
,我需要删除日期选择器。如果未选中该复选框,则重新应用日期选择器。
我尝试将文本框设置为只读,但日期选择器仍在工作。如何做到这一点。
编辑:在同一个复选框事件中,我还想将选择(下拉)控件设置为不可选择。没有人应该能够更改选择控件中的内容。
I have a datepicker on a textbox txtDate
. I need to remove the datepicker, if a particular checkbox chkBox
is checked. And to reapply the datepicker if the checkbox is not checked.
I tried making the textbox readonly, but datepicker is still working. How to do this.
EDIT: On the same checkbox event, I also want to make a select (dropdown) control as non selectable. No one should be able to change what in the select control.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在复选框的
change
处理程序中,您可以在日期选择器上调用enable
或disable
,例如:您可以在此处的演示中尝试一下。
In your
change
handler for the checkbox you can callenable
ordisable
on the datepicker, for example:You can try it out in a demo here.