css – -webkit-text-security兼容性

前端之家收集整理的这篇文章主要介绍了css – -webkit-text-security兼容性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我设置了text-security:disc;以下面的方式但它不能在Firefox中工作.
text-security:disc;
-webkit-text-security:disc;
-mox-text-security:disc;

我将这些属性设置为输入[type =’number’]字段.有什么建议吗?

解决方法

window.onload = function() {
    init(); 
}

function init() {
    var x = document.getElementsByTagName("input")[0];
    var style = window.getComputedStyle(x);
    console.log(style);

    if (style.webkitTextSecurity) {
        // Do nothing
    } else {
        x.setAttribute("type","password");
    }
}

CSS

input {
    text-security: disc;
    -webkit-text-security: disc;
    -moz-text-security: disc;
}
原文链接:https://www.f2er.com/css/215004.html

猜你在找的CSS相关文章