禁用文本字段的自动完成功能

时间:2017-09-07 04:55:32

标签: php html

除了通过在html代码中提供autocomplete="false"之外,是否还有其他方法可以禁用自动填充功能。在我的情况下,“赢了”

2 个答案:

答案 0 :(得分:1)

自动填充属性的可能值为“开启”和“关闭”,因此请尝试:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text" id="promo-code">
<input type="text" id="total">

https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion

答案 1 :(得分:0)

通过JQuery你可以做到这一点

$(document).ready(function() {
      $("form").attr('autocomplete', 'off');
});

请尝试此操作..您可以参考here