3 回答
暮色呼如
TA贡献1853条经验 获得超9个赞
应该是你吧btnClk放在了controller外面的缘故,你每次push之后,msgList是改变了,但是并没有改变$scope.msgLis,BTW,jQuery和AngularJs最好别一起用,思想不一样。厄……不懂为什么script library提交后完全变了模样……就不提交完整代码了,改了push btn和controller
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <input id="btn" type="button" ng-click="btnClk()" value="Push" /> ... var msgList = []; var appEditDeviceConfig = angular.module('aaaaa', []) .controller('ccccc', function ($scope,$http) { $scope.txtBox = ''; $scope.msgLis = msgList; $scope.btnClk = function(){ var txt = $scope.txtBox; msgList.push(txt); console.log(msgList); }; }); ... |
不负相思意
TA贡献1777条经验 获得超10个赞
添加回答
举报
0/150
提交
取消