本文介绍了以密码格式掩盖所有在textarea中输入的文本,例如********的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
<textarea id="txt_area" class="TextArea" name="textarea" maxlength="256"></textarea>
at run time when user try to enter anything inside the above text area, it should display password format or special characters e.g.: *********
推荐答案
<html>
<head>
<title></title>
</head>
<body>
<textarea id="txtArea" class="TextArea" name="textarea" maxlength="256"></textarea>
<input type="button" value="Get Value" />
<script type="text/javascript" src="../Scripts/jquery-1.7.1.js"></script>
<script type="text/javascript">
这篇关于以密码格式掩盖所有在textarea中输入的文本,例如********的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!