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

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

概述我在我的页面上使用了 bootstrap material kit,但是我的问题是标签没有在chrome上自动填充.我已经四处搜索,看到这是一个已知的问题,并尝试使用建议的解决方案 here.但它仍然不适合我.不知道该怎么解决? 这就是我调用样式表的方式: <link href="/css/material-kit/css/bootstrap.min.css" rel="stylesheet" / 我在我的页面上使用了 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 >    <label >Password</label>    <input type="password" name="password"  required/>    @if ($errors->has('password'))        <span >            <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');        }    });}));
总结

以上是内存溢出为你收集整理的html – Bootstrap材料浮动标签在自动填充上不起作用全部内容,希望文章能够帮你解决html – Bootstrap材料浮动标签在自动填充上不起作用所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1135098.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存