11
JQuery ile giriş değerini ayarladıktan sonra açısal modeli güncelleyin
Bu basit senaryo var: Değeri jQuery'nin val () yöntemiyle değiştirilen girdi öğesi. JQuery set değeri ile açısal modeli güncellemeye çalışıyorum. Basit bir direktif yazmaya çalıştım, ama istediğimi yapmıyorum. İşte yönerge: var myApp = angular.module('myApp', []); myApp.directive('testChange', function() { return function(scope, element, attrs) { element.bind('change', function() { console.log('value changed'); }) } …