私のページにjquery時間ピッカーがあります。 DONEボタンがクリックされたときにこのタイムピッカーで関数を呼びたいと思います。だからこれを行う方法?jquery時間ピッカーの「完了」ボタンで関数を呼び出す方法
私を助けてください。これは動作します
$("#datepicker").datepicker({
showButtonPanel: true,
beforeShow: function (input) {
setTimeout(function() {
var btn = $(input).datepicker("widget").find(".ui-datepicker-buttonpane .ui-datepicker-close");
btn.bind("click", function() {
$(input).datepicker("setDate", new Date());
$(input).datepicker("hide");
});
}, 1);
}
});
ゆうOnCloseの
$('#example16_end').datetimepicker({
onClose: function(dateText, inst) {
alert('closing');
},
$( 'セレクタ')datepicker({ onSelect:function(dateText、inst){...} )); – mgraph
コードを表示できますか? –