var selectCommens = angular.module('chapterSelect', []).controller('myChapter',function($scope){
$scope.name='derek';
})。link:function(scope,iElement,iAttrs,controller){
restrict: 'AE', template: '<a href="javascript:;">点击</a>', replace: false,
iElement.bind('click',function(){
scope.name='frank';
console.log(scope)
})
}现在绑定了click事件,怎么样让我点击动态让“scope.name”改变并同时在页面上更新;
阿晨1998
相关分类