将文本框中的文本框放置在C#.net中单击时应隐藏

时间:2013-02-22 10:37:57

标签: javascript .net c#-4.0

我想知道如何在文本框中使用占位符。我想使用一些必须说“在这里输入您的姓名”的文本框..我想清除文本当用户单击文本框时。如果他再没有在文本框中输入任何内容它应该说“在这里输入你的名字”。

1 个答案:

答案 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>