我有这个简单的场景:
输入元素的值被 jQuery 的 val() 方法改变。
我正在尝试使用 jQuery 设置的值更新角度模型。我试图写一个简单的指令,但它没有做我想要的。
这是指令:
var myApp = angular.module('myApp', []);
myApp.directive('testChange', function() {
return function(scope, element, attrs) {
element.bind('change', function() {
console.log('value changed');
})
}
})
这是 jQuery 部分:
$(function(){
$('button').click(function(){
$('input').val('xxx');
})
})
和html:
<div ng-app="myApp">
<div ng-controller="MyCtrl">
<input test-change ng-model="foo" />
<span>{{foo}}</span>
</div>
</div>
<button>clickme</button>
这是我尝试的小提琴:http:
//jsfiddle.net/U3pVM/743/
有人可以指出我正确的方向吗?