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.
如何向 datetimepicker 插件添加清除按钮。我正在考虑用清除按钮替换完成按钮。
在 HTML 中创建具有唯一 ID 的按钮。在jQuery中写这个......
$("#yourbuttonid").click(function(){ $("#thedattimepicker").val(""); });
单击时,它将清除您在函数中指定的任何元素的值。您只需复制函数中的第二行代码以获得更多选择器,即可清除更多元素。