我想回显$ password来输入表单的字段,因为表单能够发布密码以便稍后再做一些事情。 我不希望在html源代码中显示任何密码字符。 怎么做? 非常感谢!
<?php
//Don't display password character in html source code... How?
echo '<input type="password" name="pwd" value="'.$password.'">';
?>
答案 0 :(得分:-2)
使用此隐藏密码
document.addEventListener("touchstart", function(event) {
// Click outside logic
}