熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

JS文本框默認值處理詳解

2022-06-13   來源: JSP教程 
以下代碼是對JS文本框的默認值處理進行了介紹需要的朋友可以參考下   復制代碼 代碼如下:

  
<script type="text/javascript">
       function txtFocus(el) {
           if (eldefaultValue == elvalue) { elvalue = ; elstylecolor = #; }
       }

  function txtBlur(el) {
           if (elvalue == ) { elvalue = eldefaultValue; elstylecolor = #; }
       }
    </script>

  <asp:TextBox ID="txtBookPerson" runat="server" CssClass="text" style="color:#;" onfocus="txtFocus(this)" onblur="txtBlur(this)" value=請輸入預定人 ></asp:TextBox>


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19937.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.