我的页面中有两个字段。其中一个是datepicker
另一个是datetimepicker
。
两个字段都有相同的classes
和id
。
<div id="ui-datepicker-div" class="ui-datepicker ui-widget ui-widget-content"></div>
我以这种方式绑定日期选择器:
$scope.bindDate('#appliedDate');
$scope.bindDateTime('#appliedTime');
现在我需要将动态类dtPicker
添加到bindDateTime
字段。
我试过了:
$scope.bindDateTime = function(value) {
$('#ui-datepicker-div').addClass("dtPicker");
$(value).datetimepicker({
dateFormat: 'yy-mm-dd',
onSelect: function(datetext){
},
});
}
但动态类同时添加了datePicker
和dateTimePicker
个字段。我想只添加dateTimePicker
字段。如何做?
答案 0 :(得分:0)