1
我目前在我的代碼中使用this datetimepicker(無圖標(僅限輸入域)),並且一旦選擇日期時間,我需要觸發一個函數。 我試圖用幾個jQuery的功能,但我會得到不同的錯誤,這裏是我所使用的那些:當使用datetime-picker選擇日期/時間時觸發事件
$('#datetimepicker4').datetimepicker({
onClose: function (dateText, inst) {
alert("date chosen");
}
});
我得到這個錯誤
TypeError: option onClose is not recognized!
,並用一個類似onSelect
, 當我使用datepicker instead
$('#datetimepicker4').datepicker({
onClose: function (dateText, inst) {
alert("date chosen");
}
});
我得到這個錯誤:
TypeError: $(...).datepicker is not a function
ps:我正在使用jQuery 1.11.3並使用firefox運行代碼。
編輯:問題與dp.change
您是否檢查該頁面上的「事件」選項卡? https://eonasdan.github.io/bootstrap-datetimepicker/Events/ - 特別是dpchange https://eonasdan.github.io/bootstrap-datetimepicker/Events/#dpchange – Darren
我剛剛檢查過,這真的很有幫助,謝謝:) – heba
@heba發表一個描述工作解決方案的答案(接受它),而不是編輯自己的問題來添加解決方案。 – VincenzoC