我想在字段wpc_crewid
中隐藏任何用户类型。我已尝试使用passwordInput,如下所示 -
<?= $form->field($modelsProductsales, "[{$i}]wpc_crewid")->label(false)->passwordInput(['maxlength' => true,'autofocus' => 'autofocus','placeholder' => 'Crew ID No','autocomplete' => 'off','class' => 'crewid']) ?>
这是有效的,但只要用户将光标放在此字段上,它就会显示一个下拉列表。我不希望这个下拉列表出现。
请让我知道解决方法。
答案 0 :(得分:1)
现在浏览器已开始覆盖自动完成关闭,因此添加自动完成功能将无效
浏览器在查看第一个输入类型密码和另外一个输入之前将其视为用户名,因此您可以使用技巧通过在表单开头添加以下代码来欺骗浏览器
<input style="opacity: 0;position: absolute;">
<input type="password" style="opacity: 0;position: absolute;">
希望这会有所帮助: - )