AngularJS 购物车实例

html 页面




	Angular.js
	
	



your order

{{item.title}} {{item.price | currency}} {{item.price * item.quantity | currency}}

js页面

function CartController($scope){
	$scope.items = [
		{title:"paint posts", quantity:"8", price:"7.8"},
		{title:"paint posts", quantity:"8", price:"7.8"},
		{title:"paint posts", quantity:"8", price:"7.8"}
	];

	$scope.remove = function(index){
		$scope.items.splice(index,1);
	}
}	

你可能感兴趣的:(AngularJS)