如何使用 JavaScript 日历控件填充两个文本框?
我需要使用日历控件同时在两个文本框中填充日期时间值。就像在客户端单击日历控件一样,该控件中的选定日期应该填充在为开始日期定义的相应文本框中。还有另一个文本框,称为结束日期,也必须在客户端单击时填充相同的值。是否有任何第三方 javascript 文件可以处理这种情况以填充两个文本框。请帮我解决这个问题吗?
I need to populate the date time values in two textboxes at a same instant using a calendar control. Like on client side click of calendar control, the selected date in that control should get poulate on the corresponding textbox defined for say start date. There is an another textbox say enddate which also have to be populated with the same value on client click. Is there any third party javascript file to handle this scenario to populate two textboxes. Pls help me out on this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的页面
calendardel.js 文件代码
中添加此代码,然后在 HTML 代码
中添加该脚本,然后在脚本部分中添加该脚本
Add this in ur page
calendardel.js file code
then HTML code
and then add that script in script part
可以使用第一个输入的OnChange事件吗?
编辑:
对于asp TextBox,不知道是否有更好的方法,但它有效。
我无法将js函数名称直接放在文本框的声明中,它应该根据文本框的id进行更改,然后将其放在代码隐藏中...
其他方式:
You can use the OnChange event of the first input?
Edit:
For asp TextBox, do not know if there is a better way, but it works.
I could not put the js function name directly in the declaration of the textbox, it should change according to the id of the textbox, then put it in codebehind ...
other way: