除了通过在html代码中提供autocomplete="false"
之外,是否还有其他方法可以禁用自动填充功能。在我的情况下,“赢了”
答案 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">
答案 1 :(得分:0)
通过JQuery你可以做到这一点
$(document).ready(function() {
$("form").attr('autocomplete', 'off');
});
请尝试此操作..您可以参考here