输入号码的伪装在IE中不起作用。
在其他浏览器中有效的代码:
JsFiddle链接 http://jsfiddle.net/ca3nru7f/
$scope.properties.originalInputVal = result;
$('.value,.number').click(function() {
if ($scope.properties.inputKey && $scope.properties.inputKey.length == 12) {
$scope.properties.originalInputVal = ''
$scope.properties.inputKey = ''
result = ''
$('.number').val('')
$('.value').val('')
$('.value').css({
'color': 'initial'
})
}
})
if ($scope.properties.inputKey && $scope.properties.inputKey.length == 12) {
$('.value').css({
'color': 'transparent'
})
} else {
$('.value').css({
'color': 'initial'
})
}