我最近为我的网站找到了一个 jquery datepicker。我已经安装了相关文件,但是遇到了一个问题,因为我的页面上有两个日期字段应该是日期选择器的目标。目前它仅适用于两个字段中的第一个,即使两个字段具有相同的 id 和名称(“日期”)。日期选择器使用的 javascript 如下
<script type="text/javascript">
window.onload = function(){
new JsDatePick({
useMode:2,
target:"date",
dateFormat:"%Y-%m-%d",
isStripped:false,
cellColorScheme:"armygreen",
/*selectedDate:{ This is an example of what the full configuration offers.
day:5, For full documentation about these settings please see the full version of the code.
month:9,
year:2006
},*/
yearsRange:[1978,2020],
limitToToday:false,
//cellColorScheme:"beige",
imgPath:"img/",
weekStartDay:1
});
};
我不知道如何将另一个目标添加到此代码中的目标行理想情况下,我喜欢它以定位“dateA”和“dateB”。
有任何想法吗?对不起,如果我很愚蠢!约翰