2013-02-11 60 views

回答

0

可以修改jsDatePick js文件,並添加該功能是這樣的:

if (this.oConfiguration.disableNotFriday){ 
    if (parseInt(oDay.getDay()) != 5 ){ 
     disabledDayFlag = true; 
     aDayDiv.setAttribute("isJsDatePickDisabled",1); 
} 
} 

您還需要添加到配置:

this.oConfiguration.disableNotFriday = (aConf["disableNotFriday"] != null) ? aConf["disableNotFriday"] : false; 

和javascripty通話對象是這樣的:

new JsDatePick({ 
     useMode:2, 
     target:"inputField", 
     dateFormat:"%d-%M-%Y", 
     disableNotFriday:true 
    }); 

例被設置在這裏:http://jqfiles.webege.com/calendar.html

這是你想要的嗎?

+0

是的,這正是我想要的,謝謝你:) – 2013-02-12 14:43:41

+0

沒問題,如果你有一些問題,只是問。 – 2013-02-12 14:47:16