前端 - angular報錯?
問題描述
<!DOCTYPE html><html lang='en' ng-app='app'><head> <meta charset='UTF-8'> <meta name='viewport' content='width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0'> <script src='http://www.piao2010.com/wenda/js/rem.js'></script> <script src='http://www.piao2010.com/wenda/js/Angular.js'></script> <title>longin</title> <style>body{ padding-top:1.5rem; display: flex; justify-content: center; align-items: center; font-size: 16px}input{} </style></head><body> <p ng-controller='defaultCtrl'><h1>律所SaaS系統</h1><p class='longin'> <h3>登錄</h3> <p class='phoneNub'><span>手機號</span><input type='number' ng-model='phone' ng-change='check()'> </p> <p class='yzm'><span>驗證碼</span><input type='number' name='' ng-model='yzm'><a href='http://www.piao2010.com/wenda/14097.html' class='fsyz'>獲取驗證碼</a> </p> <a href='http://www.piao2010.com/wenda/14097.html' class='loginTo'>登錄</a></p> </p></body><script> angular.module('app',[]) .controller('defaultCtrl',[’$scope’,function($scope){$scope.phone='',$scope.yzm='',$scope.check = function(){ console.log('2') if(/^1(3|4|5|7|8)d{9}$/.test($scope.phone)){alert('1') }} }])</script></html>報錯VM366:158 Uncaught TypeError: Cannot read property ’description’ of undefined
問題解答
回答1:確定是angular報的錯?檢查下rem.js吧
相關文章:
1. sql語句 - 如何在mysql中批量添加用戶?2. shell - Update query wrong in MySQL3. javascript - mysql插入數據時怎樣避免與庫中的數據重復?4. php - 數據庫表如果是null怎么替換為其他字段的值5. 事務 - mysql共享鎖lock in share mode的實際使用場景6. 怎么php怎么通過數組顯示sql查詢結果呢,查詢結果有多條,如圖。7. mysql - JAVA怎么實現一個DAO同時實現查詢兩個實體類的結果集8. SQLAlchemy 訪問Mysql數據庫彈出Warning,VARIABLE_VALUE,如何解決?9. mysql - 數據庫建字段,默認值空和empty string有什么區別 11010. mysql建表報錯,查手冊看不懂,求解?
