0

日付ボックスから現在の日付を削除する方法.実際に日付ボックスを開くと、現在の日付が強調表示されます.しかし、ユーザーは日付の例「14」を選択します. ユーザーが再び日付ボックスを開くと、「14」と現在の日付が強調表示されます。ここに私のフィドルがあります http://jsfiddle.net/ravi1989/uhdYv/1/

 <input name="mydate" id="mydate" type="date" data-role="datebox" class="documentDate_h"  data-options='{"mode": "calbox","useNewStyle":true,"zindex":1200}' />

最初にヘッダーの (+) ボタンをクリックします。ポップアップが表示されます。日付ボックスが開きます。今日の日付が表示され、任意の日付が選択されます。次に、日付ボックスが再び開きます。選択した日付と今日の日付が表示されます。

第二号 月曜日、火曜日の色を変えるにはどうすればいいの...?

4

1 に答える 1

0
    For changing color of the current date from its default theme "a" you can use this:

     <input name="mydate" id="mydate" type="date" data-role="datebox" data-options='{"mode": "calbox", "useNewStyle":true, "themeDateToday": "e", "zindex":2000}'/>

    Hence current date will be in yellow, instead of blue and choosen date can be default blue.

    refer these sites for theming of the call box:

    http://dev.jtsage.com/jQM-DateBox2/demos/fullopt.html
    http://dev.jtsage.com/jQM-DateBox2/demos/api/themes.html

There is no such setting for month text, so for "Tu We" etc override the class as per below:

.ui-datebox-griddate-label {
height: 15px!important;
line-height: 15px!important;
color: green;
}

現在の日付の強調表示を削除し、選択した日付のみを強調表示したままにするには、次のようにします。

ただし、両方を保持すると、日付ボックスの API コード自体を変更する必要があります...

于 2013-07-17T17:50:52.093 に答える