我需要获得Angular模型$scope
的长度。我的代码提醒undefined
但是scope
在我scope
length
时有一个值
alert($scope.comppostal.length)
如何检查长度? $scope.comppostal
的内容为12345
答案 0 :(得分:6)
您收到undefined
,因为$scope.comppostal
是一个数字。您需要将其转换为字符串。
使用
alert((''+$scope.comppostal).length)
var a = 12345;
alert(('' + a).length);