这是 JS 小提琴:
$("#datepicker").datepicker({ dateFormat: 'dd/mm/yy', beforeShowDay: myFunction});
function myFunction(input, inst)
{
alert(inst);
}
根据文档:http ://docs.jquery.com/UI/API/1.8/Datepicker#event-beforeShow
该beforeshowDay
方法接受输入和 inst。虽然 inst 似乎总是未定义。这让我有些悲伤,因为我需要掌握日期选择器本身。
有解决方法吗?