码迷,mamicode.com
首页 > Web开发 > 详细

angularjs学习之五(angularjs中一般函数参数的传递)

时间:2015-03-30 23:14:31      阅读:365      评论:0      收藏:0      [点我收藏+]

标签:angularjs   function   

1.模型参数

直接使用变量名,不要加引号


<!doctype html>
<html ng-app="passAter">
	<head>
		<meta charset="utf-8"/>
	</head>
	<body>
		<div ng-controller="passCtrl">
		    <input type="text" ng-model="value"/>
			<button ng-click="alertfun(value)">click</button>
		</div>
	</body>
	<script src="./js/angular.min.js"></script>
	<script>
	  angular.module('passAter',[]).controller('passCtrl',['$scope',function($scope){
	      $scope.alertfun = function(param){
		      alert(param);
		  }
	  }])
	</script>
</html>

技术分享

2. 普通参数

加上引号即可

将上面的value改为 ‘value‘

就会直接弹出 value了




angularjs学习之五(angularjs中一般函数参数的传递)

标签:angularjs   function   

原文地址:http://blog.csdn.net/wujiangwei567/article/details/44757927

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!