angularJS的$attrs方法使用代码实例
下面就是相关此方法应用的代码实例,需要的朋友可以做一下参考。
代码:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="/" />
<title>实例</title>
<script src="js/jquery.js"></script>
<script src="js/angular.min.js"></script>
</head>
<body ng-app="Demo">
<div a> a_directive </div>
<div ng-controller="TestCtrl">
<h1 t> 原始内容 </h1>
<h2 t2> 原始内容 </h2>
<h3 t3="hiphop" title2="{{name}}"> 原始内容 </h3>
<div compile></div>
<div>
<test a="{{ a }}" b c="xxx"></test>
<button ng-click="a=a+1"> 修改 </button>
</div>
<te a="1" ys-a="123" ng-click="show(1)">这里</te>
</div>
<script>
var app = angular.module('Demo', [], angular.noop);
app.controller("TestCtrl",function($scope) {
$scope.name = "qihao";
});
app.directive("t",function() {
return {
controller : function($scope){$scope.name = "qq"},
template : "<div>test:implementToParent{{name}}</div>",
replace : true,
scope : true //作用域是继承的,默认就是继承的
}
});
app.directive("t2",function() {
return {
controller : function($scope){$scope.name = "nono"},
template : "<div>test:implementToParent{{name}}</div>",
replace : true,
restrict : "AE"
}
});
app.directive("t3",function() {
return {
template : "<div>test:implementToParent_titleIs:{{title}}<br>title2Is:{{title2}}</div>",
replace : true,
restrict : "AE",
scope : {
title : "@t3",
title2 : "@title2"
}
}
});
app.directive('a',function() {
var func = function() {
console.log('compile');
return function() {
console.log('link');
}
}
var controller = function($scope, $element, $attrs, $transclude) {
//$transclude :是指令标签的复制体
console.log('controller');
console.log($scope);
console.log($transclude);
//$transclude接受两个参数,你可以对这个克隆的元素进行操作,
var node = $transclude(function(clone_element, scope) {
$element.append(clone_element);
$element.append("<span>spanTag___</span>");
console.log(clone_element);
console.log('--');
console.log(scope);
});
console.log(node);
}
return {
compile: func,
template: "<h1 ng-transclude></h1>",
controller: controller,
transclude: true,
restrict: 'AE'
}
});
app.directive('compile',function() {
var func = function() {
console.log('a compile');
return {
pre: function() {
console.log('a link pre')
},
post: function() {
console.log('a link post')
},
}
}
return {
restrict : "AE",
compile : func
}
})
app.directive('test', function(){
var func = function($element, $attrs){
console.log($attrs);
$attrs.$observe('a', function(new_v){
console.log(new_v);
});
}
return {
compile: func,
restrict: 'E'
}
});
app.controller('TestCtrl', function($scope){
$scope.a = 123;
});
app.directive('te', function(){
var func = function($scope,$element, $attrs,$ctrl){
console.log($ctrl)
//$attrs.$set. 给这个属性设置b,值为ooo,就是这样
$attrs.$set('b', 'ooo');
$attrs.$set('a-b', '11');
//这个还有点不懂啊 //第二个参数值
$attrs.$set('c-d', '11', true, 'c_d');
console.log($attrs);
}
return {
compile: function(){
return func
},
restrict: 'E'
}
});
app.controller('TestCtrl', function($scope){
$scope.show = function(v){console.log(v);}
});
</script>
</body>
</html>
声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至201542412@QQ.com举报,一经查实,本站将立刻删除。
相关推荐
-
angularJS进行表单提交代码实例
本章节分享一段代码实例,它实现了使用ngulrJS进行表单提交的功能。有需要的朋友可以做一下参考,代码实例如下: chrs
-
阻止点击回车提交表单效果代码实例
本章节介绍一下如何阻止点击回车提交表单效果。在默认情况下,如果表单或者表单元素获取焦点的话,点击回车就会提交表单。但是在实际应用中,往往需要只点击提交按钮才能够提交表单。代码实例如下:
-
js模拟实现StringBuffer类功能代码实例
JvScrit并没有内置的StringBuffr()方法,下面就通过代码实例来模拟实现它的功能。代码实例如下:function StringBuffr() { this.__strings
-
使用js动态创建div元素并设置其文本内容
本章节介绍一下如何利用js动态的创建div元素,并设置div元素的文本内容。代码实例如下:
-
将十六进制颜色值转换为RGB颜色值代码实例
本章节分享一段代码实例它能够实现将十六进制颜色值转换为RGB颜色值代码实例。如果从RGB颜色值转换为十六进制颜色值可以参阅jQury如何将获取的颜色值转换为十六进制形式一章节。代码实例:!DOCT