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');
})
}
})
bu jQuery kısmı:
$(function(){
$('button').click(function(){
$('input').val('xxx');
})
})
ve html:
<div ng-app="myApp">
<div ng-controller="MyCtrl">
<input test-change ng-model="foo" />
<span>{{foo}}</span>
</div>
</div>
<button>clickme</button>
İşte denememle keman:
http://jsfiddle.net/U3pVM/743/
Birisi bana doğru yönde işaret edebilir?