首页 > 代码库 > 内置指令和内置事件

内置指令和内置事件

<div ng-include="‘other.html‘"></div>

<div ng-include src="http://www.mamicode.com/‘other.html‘"></div>

<button ng-click=‘changeStaus($event)‘>点击</button>

$scope.changeStaus=function(event){

  angular.element(event.target).html(‘点击改变按钮文字‘);angular.element()方法可以把dom对象转换为jquery对象

}

内置指令和内置事件