91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

AngularJS怎么實現自定義指令及指令配置項的方法

發布時間:2021-04-21 10:45:44 來源:億速云 閱讀:180 作者:小新 欄目:web開發

這篇文章將為大家詳細講解有關AngularJS怎么實現自定義指令及指令配置項的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

js的作用是什么

1、能夠嵌入動態文本于HTML頁面。2、對瀏覽器事件做出響應。3、讀寫HTML元素。4、在數據被提交到服務器之前驗證數據。5、檢測訪客的瀏覽器信息。6、控制cookies,包括創建和修改等。7、基于Node.js技術進行服務器端編程。

AngularJS自定義指令有兩種寫法:

//第一種
angular.module('MyApp',[])
.directive('zl1',zl1)
.controller('con1',['$scope',func1]);
function zl1(){
  var directive={
    restrict:'AEC',
   template:'this is the it-first directive',
  };
  return directive;
};
function func1($scope){
  $scope.name="alice";
}
//第二種
angular.module('myApp',[]).directive('zl1',[ function(){
 return {
  restrict:'AE',
  template:'thirective',
  link:function($scope,elm,attr,controller){
   console.log("這是link");
  },
  controller:function($scope,$element,$attrs){
   console.log("這是con");
  }
 };
}]).controller('Con1',['$scope',function($scope){
 $scope.name="aliceqqq";
}]);

指令配置項

angular.module('myApp', []).directive('first', [ function(){
  return {
    // scope: false, // 默認值,共享父級作用域
    // controller: function($scope, $element, $attrs, $transclude) {},
    restrict: 'AE', // E = Element, A = Attribute, C = Class, M = Comment
    template: 'first name:{{name}}',
  };
}]).directive('second', [ function(){
  return {
    scope: true, // 繼承父級作用域并創建指令自己的作用域
    // controller: function($scope, $element, $attrs, $transclude) {},
    restrict: 'AE', // E = Element, A = Attribute, C = Class, M = Comment
    //當修改這里的name時,second會在自己的作用域中新建一個name變量,與父級作用域中的
    // name相對獨立,所以再修改父級中的name對second中的name就不會有影響了
    template: 'second name:{{name}}',
  };
}]).directive('third', [ function(){
  return {
    scope: {}, // 創建指令自己的獨立作用域,與父級毫無關系
    // controller: function($scope, $element, $attrs, $transclude) {},
    restrict: 'AE', // E = Element, A = Attribute, C = Class, M = Comment
    template: 'third name:{{name}}',
  };
}])
.controller('DirectiveController', ['$scope', function($scope){
  $scope.name="mike";
}]);

關于“AngularJS怎么實現自定義指令及指令配置項的方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

呼玛县| 天气| 响水县| 晋宁县| 上饶市| 藁城市| 兰西县| 海门市| 凤台县| 佳木斯市| 溆浦县| 广昌县| 万全县| 合山市| 施秉县| 舒城县| 正定县| 岳阳市| 和平区| 鱼台县| 临邑县| 麟游县| 延寿县| 田东县| 裕民县| 宁波市| 商城县| 衡南县| 陆河县| 武定县| 乡城县| 陕西省| 乌拉特中旗| 巩义市| 永州市| 丰台区| 茂名市| 长泰县| 远安县| 安阳市| 五峰|