最近、自分の Web サイト用の jquery 日付ピッカーを見つけました。関連ファイルをインストールしましたが、ページに日付ピッカーが対象とする日付フィールドが 2 つあるため、問題が発生しています。現在、両方のフィールドの ID と名前 (「日付」) が同じ場合でも、2 つのフィールドの最初のフィールドでのみ機能します。日付ピッカーが使用する 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」をターゲットにするのが理想的です。
何か案は?私が馬鹿ならごめんなさい!ジョン