html – Bootstrap材料浮动标签在自动填充上不起作用

前端之家收集整理的这篇文章主要介绍了html – Bootstrap材料浮动标签在自动填充上不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的页面上使用了 bootstrap material kit,但是我的问题是标签没有在chrome上自动填充.我已经四处搜索,看到这是一个已知的问题,并尝试使用建议的解决方here.但它仍然不适合我.不知道该怎么解决

这就是我调用样式表的方式:

<link href="/css/material-kit/css/bootstrap.min.css" rel="stylesheet" />
<link href="/css/material-kit/css/material-kit.css" rel="stylesheet"/>
<link href="/css/landing-page.css" rel="stylesheet"/>

HTML:

<div class="form-group label-floating">
    <label class="control-label">Password</label>
    <input type="password" name="password" class="form-control" required/>
    @if ($errors->has('password'))
        <span class="help-block">
            <strong>{{ $errors->first('password') }}</strong>
        </span>
    @endif
</div>

和脚本:

<!--   Core JS Files   -->
<script src="/js/landing-page/jquery.min.js" type="text/javascript"></script>
<script src="/js/landing-page/bootstrap.min.js" type="text/javascript"></script>
<script src="/js/landing-page/material.min.js"></script>
<script>
    $(document).ready(function() {
            $.material.options.autofill = true;
            $.material.init();
    });
</script>

解决方法

这最终对我有用:
$(window).load($.debounce(200,function(){
    $('input:-webkit-autofill').each(function(){
        if ($(this).val().length !== "") {
            $(this).siblings('label,i').addClass('active');
        }
    });
}));
原文链接:https://www.f2er.com/html/227023.html

猜你在找的HTML相关文章