虽然这里有许多答案表明,str_repeat(
),但我怀疑这是你想要的。 毕竟,任何辅助工具都可以产生一种特征,如果能够像你正确指出的那样简单地使用<条码>和斜线;投入类型=“密码”/>条码>(即,你仍然能够从源代码上获得密码,但为什么两人都把一个混淆的领域集中起来? 或者,不仅如此,它有固定的固定数目* ?
我怀疑你正在寻找这样的东西:
<?php
$thePassword = "thisIsMyPassword";
?>
<input type="text" id="input_user_types_in" value="<?php echo str_repeat( * , strlen($thePassword)); ?>" />
<input type="hidden" id="value_to_post_back" name="value_to_post_back" value="<?php echo $thePassword; ?>" />
<script type="text/javascript">
var textInput = document.getElementById( input_user_types_in );
var hiddenInput = document.getElementById( value_to_post_back );
textInput.onfocus = function() {
this.value = hiddenInput.value;
};
textInput.onblur = function() {
var i;
hiddenInput.value = this.value;
this.value = ;
for (i = 0; i < hiddenInput.value.length; i++) {
this.value = this.value + * ;
}
};
</script>
a fiddle around with it ;-