Jquery中的多个日期选择器

时间:2017-06-28 20:41:47

标签: jquery

我正在尝试修改以下代码,以便在单击文本框时显示多个日历。第一个文本框适用于日历,第二个文本框不显示任何内容。



SELECT
  Name = XCol.value('../@Name','varchar(25)'),   
  BeneficialOwnerName = XCol.value('BeneficialOwnerName[1]','varchar(25)'),
  TaxID = XCol.value('TaxID[1]','varchar(25)')
FROM 
  @input.nodes('/Data/Tab/Row') AS XTbl(XCol)




2 个答案:

答案 0 :(得分:1)

class必须是唯一的。您可以使用<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <link rel="stylesheet" href="///code.jquery.com/resources/demos/style.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <script> $( function() { $( ".myDatepicker" ).datepicker({ changeMonth: true, changeYear: true }); } ); </script> <p>Date: <input type="text" id="datepicker1" class="myDatepicker"></p> fsdfsdfsd sdf sdf sdf <p>Date: <input type="text" id="datepicker2" class="myDatepicker"></p> fsdfsdfsd sdf sdf sdf <p>Date: <input type="text" id="datepicker3" class="myDatepicker"></p>作为选择器

ALL

答案 1 :(得分:1)

您选择带有ID的datepicker id元素,因此只会选择第一个ID(ID必须是唯一的!) 改变它为一个类,它应该工作