jquery操作angularjs對象

來源:互聯網
上載者:User

   這篇文章主要介紹了jquery操作angularjs對象的相關資料,需要的朋友可以參考下

  jquery是一個非常強大的js架構,angularjs是一個非常牛的前端mvc架構。雖然用其中的任何一個架構在項目中夠用了,但是有時候這兩個架構需要混合著用,雖然不推薦。但有時候混合用時,卻非常方便,不要考慮那麼多,只要能實現功能,何樂而不為?

  最近做的一個產品,前端用angularjs,但表格架構用的卻是jquery.datatables.js,當然其中少不了碰到jquery與angularjs互動問題。由於公司保密,我就不用真實項目示範了,寫個小demo吧,當然真實的項目要複雜得多。

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 <!DOCTYPE html> <html ng-app="ngDemo"> <head> <title></title> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script> <script src="//www.w3cschool.cc/try/angularjs/1.2.5/angular.min.js"></script> <script type="text/javascript"> $(function() { $('#btn').on('click',function(e) { $('#dv2').text(Number($('#dv2').text())+1);//jquery+angular實現 $('#dv3').text(Number($('#dv3').text())+1);//純jquery實現 }); });   var app=angular.module('ngDemo',[]); app.controller('ngCtrl',['$scope',function ($scope) { $scope.test1=0; $scope.test2=0; }]); </script> </head> <body ng-controller="ngCtrl"> test1:<div id="dv1">{{test1}}</div><!--純angular實現--> test2:<div id="dv2" ng-bind="test2" ng-model="test2"></div> test3:<div id="dv3">0</div> <button id="btn" ng-click="test1=test1+1">click me +1</button> </body> </html>

  代碼

  效果

  點了兩次,這三個值都加到2了,貌似沒什麼問題。

  真沒問題嗎?請看

  視圖上是2,model上還是0,沒有實現同步,怎麼辦?

  那麼問題又來了,jquery和angularjs哪家強呢?

  改下代碼

  ?

1 2 3 4 5 6 $('#btn').on('click',function(e) { var scope=angular.element('#dv2').scope();//jquery+angular實現 scope.test2=scope.test2+1;//直接修改test2的值 console.log(scope.test2); $('#dv3').text(Number($('#dv3').text())+1);//純jquery實現 });

  再看看

  點了兩次,中間那個變成了1,其它兩個是2。

  點了3次,中間那個變成了2,但是scope.test2的值卻是什麼,它怎麼總是顯示慢一拍?

  再改改

  ?

1 2 3 4 5 6 7 $('#btn').on('click',function(e) { var scope=angular.element('#dv2').scope();//jquery+angular實現 scope.test2=scope.test2+1;//直接修改test2的值 scope.$apply();//綁定到視圖 console.log(scope.test2); $('#dv3').text(Number($('#dv3').text())+1);//純jquery實現 });

  再看看

  這下這三個都同步了。中藥好,西藥快,中本結合!jquery簡單,angularjs方便,兩者結合...大功告成。

  注意:scope對象一定要調用$apply(),否則會出現視圖與model不同步。

  以上所述就是本文的全部內容了,希望大家能夠喜歡。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.