前端 - 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='https://www.haobala.com/wenda/js/rem.js'></script> <script src='https://www.haobala.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='https://www.haobala.com/wenda/14097.html' class='fsyz'>获取验证码</a> </p> <a href='https://www.haobala.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. javascript - 修改表单多选项时和后台同事配合的问题。2. javascript - H5页面怎么查看console信息?3. angular.js - angularjs 怎么封装 upload 上传4. dockerfile - [docker build image失败- npm install]5. javascript - 关于Js中 this的一道题6. mysql - 索引过滤性不好是由什么原因引起的,应该怎么解决7. mysql - 我的myeclipse一直连显示数据库连接失败,不知道为什么8. javascript - vue生成一维码?求助!!!!!急9. android - Listview模仿朋友圈点赞的TextView没有刷新?10. 网页爬虫 - Python:爬虫的中文编码问题?
