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.
我使用这个出色的插件,因为我可以使更改事件在当前选定的日期工作,这是代码
$('#id_fecha').on("dp.change", function(e){alert('ok');}
这不适用于活跃的一天,谢谢。
没有看到你的实现,最明显的是你的代码中有一个错误:
你最后缺少一个):
)
$('#id_fecha').on("dp.change", function(e){alert('ok');});