我想知道如何在文本框中使用占位符。我想使用一些必须说“在这里输入您的姓名”的文本框..我想清除文本当用户单击文本框时。如果他再没有在文本框中输入任何内容它应该说“在这里输入你的名字”。
答案 0 :(得分:1)
您需要使用以下html
<input type="text" placeholder="Receiver name" maxlength="40" id="fname" name="fname" class="ci-heading ci-shadow-inset ui-input-text ui-body-c ui-corner-all ui-shadow-inset">
在Asp.net中,您可以将其编写为:
<ASP:TextBox id="txt1" placeholder="Receiver name"></ASP:TextBox>
简单的HTML代码:
<html>
<body>
<form action="#" method="POST">
<input type="text" placeholder="Receiver name" maxlength="40" id="fname" name="fname" class="ci-heading ci-shadow-inset ui-input-text ui-body-c ui-corner-all ui-shadow-inset">
</form>
</div>
</body>
</html>