<textarea id="txt_area" class="TextArea" name="textarea" maxlength="256"></textarea>
在运行时,当用户尝试在上述文本区域内输入任何内容时,它应显示密码格式或特殊字符,例如:*********
答案 0 :(得分:0)
您可以尝试以下代码,您可以在其中创建新密码输入并为其添加值
$('#txt_area').after('<input id="password_input" type="password"></input>');
$('#password_input').val($('#txt_area').val());
//to remove text area
$('#txt_area').remove();
<强> JSFiddle Demo 强>
答案 1 :(得分:0)
您是否考虑过使用MVC html助手(我注意到您将其标记为MVC 3):
@Html.PasswordFor(model => model.Password)