11
使用jQuery设置输入值后更新Angular模型
我有一个简单的场景: 输入元素,其值由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/ 有人能指出我正确的方向吗?