动态创建表单上的日历控件
我正在尝试完成一项小任务,其中我有一个带有日期文本输入的迭代表单,该表单通过 Javascript DatePicker 控件获取其值。
我的问题是,所有这些动态创建的表单上的日期选择器仅在第一个表单中的第一个文本框元素上打印值,如何为其提供对 forms[x] 文本框元素的动态引用。
我的表单名称动态生成为 form1、form2、form3、form[x],如何引用正在单击其 DatePicker 的特定表单的内部元素。 您可以下载包含日期选择器和日期选择器的 Zip 文件。动态表单的 HTML 页面位于此处 在此处输入链接说明
I’m trying to accomplish a small task where I have one single Form ITERATED with a Date textinput which gets its Value by a Javascript DatePicker control.
My problem is, the datepicker on all these dynamically created forms only prints value on the first textbox element in the first form, how do I give it Dynamic reference to forms[x] text box element.
My form names are being generated Dynamically as form1, form2, form3, form[x], how do I reference the inner element of that particular form whose DatePicker is being clicked.
you can download the Zip file which has the datepicker & the HTML page for the Dynamic forms from here enter link description here
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是正确的函数
this is the correct function
如果您通过单击按钮发送所有数据,那么您需要在 html 表单上添加一个隐藏字段,其中包含要发送的日期总数。
if you are sending all data using one click of a button then you need to add a hidden field on the html form containing the total number of dates to be sent.