angularjs 获取表单值问题
<inputtype="text"placeholder="请输入您的手机号码"ng-model="mobile">{{mobile}}<buttonclass="but...
<input type="text" placeholder="请输入您的手机号码" ng-model="mobile">{{mobile}}
<button class="button button-small" ng-click="getVerifyCode()">
获取验证码
</button>
.controller('registeredMobileCtrl', function ($scope) {
$scope.mobile = "";
$scope.VerifyCode = "";
$scope.getVerifyCode = function () {
console.log($scope.mobile);
}
})
页面上的{{mobile}}值已经发生变化,为什么触发$scope.getVerifyCode的时候获取到的是空呢?求大神帮助 展开
<button class="button button-small" ng-click="getVerifyCode()">
获取验证码
</button>
.controller('registeredMobileCtrl', function ($scope) {
$scope.mobile = "";
$scope.VerifyCode = "";
$scope.getVerifyCode = function () {
console.log($scope.mobile);
}
})
页面上的{{mobile}}值已经发生变化,为什么触发$scope.getVerifyCode的时候获取到的是空呢?求大神帮助 展开
1个回答
展开全部
.controller('registeredMobileCtrl', ['$scope','$log',function ($scope,$log) {
$scope.mobile = "";
$scope.VerifyCode = "";
$scope.getVerifyCode = function () {
$log.info('控制台输出号码',$scope.mobile);
}])
//不要使用console输出,console在项目中是我们控制不了的
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询