Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我设法阻止了 jquery datepicker 中的日期列表。
显示日期选择器后,我想使用“beforeShowDay 函数”来检查日期列表是否可用。
对于列表中的每个日期,我想提醒(“可用”)或(“不可用”)。有人告诉我,我需要“将其声明为独立功能并在这种情况下重新使用它”。但我不知道怎么做。
你能帮助我吗 ?
谢谢 !
通过声明一个独立函数,您应该只需要声明一个函数 例如:
var validateDay = function(){ //somecode }
但是您可以在此处找到具有与您想要做的类似的实现的帖子。