空的文本框我有一個文本框: -文本框中默認的文本,焦點
<asp:TextBox ID="TextBox3" runat="server" BackColor="Silver"
BorderColor="Silver" Height="20px" Style="margin-left: 6px" Width="136px" OnFocus = "onfocus(); return false;"></asp:TextBox>
function onfocus(){ document.getElementById('<%=TextBox3.ClientID%>').value = "";}
與它默認的文本,在頁面加載: -
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
// By Default the date of submission is set to current date. //
TextBox3.Text = "Enter Member ID";
}
當客戶點擊文本框中,我希望清除默認文本(空文本框),以便客戶端可以輸入實際的ID,而不必手動刪除默認文本。
但是,我正在形象化的方法與我寫的代碼無關。
你可以考慮使用HTML5的'placeholder' – mshsayem