对于我网页中的字段,需要在设备上显示numpd,输入字段为type =" password"。 尝试用CSS
做这件事<input type="tel" ....>
css:
#Id {
-webkit-text-security : disc;
}
这在iphone和android中运行良好,但在Windows手机中无法正常工作。甚至能够在IE9中重现这个问题。
还尝试添加自定义指令来执行相同的操作
myDirectives.directive('myIgnoreType', function() {
return {
priority: 500,
compile: function(elem, attrs) {
attrs.$set('type', 'password', false);
}
}
});
但这也行不通。 任何想法我怎么能用角js或html
做到这一点