我试图将datepicker值放到一个角度变量但它不起作用,如果有人可以帮助我,我非常感激。 我的代码AngularJS& jQuery的:
public inicializaDatepicker() {
$('#datepicker').datepicker({
showOn: "focus",
autoSize: this.tamanioAuto,
dateFormat: this.formato,
changeMonth: this.mesEnCombo,
changeYear: this.anioEnCombo,
yearRange: this.anioMin + ':' + this.anioMax,
onSelect: function () {
$(this).trigger('input');
$(this).trigger('change');
}
});
}
问题是ngModel没有检测到输入的任何变化。 我的HTML:
<input class="form-control input-sm" type="text" id="datepicker [(ngModel)]="valor" (ngModelChange)="handleSelected()" />