AngularJS+bootstrap实现动态选择商品功能示例
程序员文章站
2022-03-20 23:02:17
本文实例讲述了angularjs+bootstrap实现动态选择商品功能。分享给大家供大家参考,具体如下:
项目中后台一个商品库,新建活动时动态选择所需商品
&...
本文实例讲述了angularjs+bootstrap实现动态选择商品功能。分享给大家供大家参考,具体如下:
项目中后台一个商品库,新建活动时动态选择所需商品
<!doctype html> <html lang="zh-cn"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="bootstrap.min.css" rel="external nofollow" > <script src="jquery.min.js"></script> <script src="angular.js"></script> <script src="angular-animate.js"></script> <script src="bootstrap.min.js"></script> <script type="text/javascript"> var app = angular.module('myapp', []); app.controller('democtrl', function ($scope) { $scope.promotionproducts = []; $scope.pic = ''; $scope.allpictures = [ { name : '濃縮蕃茄', image : 'http://vincenthou.qiniudn.com/aa0f41e7aa0b24dbe6e20b3f.png', description : '2kg x2罐 每組建議售價: 420', href : 'www.baidu.com' }, { name : '龍蝦汁粉', image : 'http://vincenthou.qiniudn.com/51c37a943a161b2d0b510a48.png', description : '500g x1盒 每組建議售價: 400', href : 'www.baidu.com' }, { name : '美玉白汁', image : 'http://vincenthou.qiniudn.com/eaf6459357ce21a87e586312.png', description : '3.5kg x1盒 每組建議售價: 396', href : 'www.baidu.com' } ]; $scope.addoption = function(content) { if (content == '') { return; } $scope.promotionproducts.push(content); $scope.allpictures.splice($scope.allpictures.indexof(content), 1); $scope.pic = ''; } $scope.deleteoption = function(item) { $scope.allpictures.push(item); $scope.promotionproducts.splice($scope.promotionproducts.indexof(item), 1); } }); </script> </head> <body ng-app="myapp"> <div ng-controller="democtrl"> <div> <div> <h1>option</h1> </div> <div> <div> <table class="table table-striped table-bordered table-hover table-condensed"> <thead> <tr> <th>商品名称</th> <th>商品描述</th> <th>商品链接</th> <th>商品图片</th> <th>操作</th> </tr> </thead> <tbody> <tr ng-repeat="item in promotionproducts"> <td class="col-md-3"><label>{{item.name}}</label></td> <td class="col-md-3"><label>{{item.description}}</label></td> <td class="col-md-3"><label>{{item.href}}</label></td> <td class="col-md-2"><img ng-src="{{item.image}}" /></td> <td class="col-md-1"> <button type="button" class="btn btn-success btn-sm" ng-click="deleteoption(item)">delete </button> </td> </tr> </tbody> </table> </div> <select ng-options="item.name for item in allpictures" ng-model="pic"> <option value="">选择商品</option> </select> <a class="btn btn-success btn-xs" ng-click="addoption(pic)">add</a> </div> </div> </div> </body> </html>
运行效果图如下:
更多关于angularjs相关内容感兴趣的读者可查看本站专题:《angularjs指令操作技巧总结》、《angularjs入门与进阶教程》及《angularjs mvc架构总结》
希望本文所述对大家angularjs程序设计有所帮助。
下一篇: 游戏签到的用例测试点