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

對輸入內容進行字數提示功能

2022-06-13   來源: .NET編程 
    第一步以下是核心代碼在頁面引用或進行封裝都可
   
    <script language=javascript type=text/javascript>
   
    function textLimitCheck(thisArea maxLength SpanId)
   
    {
   
    if (thisAreavaluelength > maxLength)
   
    {
   
    thisAreavalue = thisAreavaluesubstring( maxLength)
   
    thisAreafocus()
   
    }
   
    /*回寫span的值當前填寫文字*/
   
    var varss=(剩余字數+(maxLengththisAreavaluelength)+;
   
    documentgetElementById(SpanId)innerHTML =varss;
   
    }
   
    </script>
   
    第二步文本框應用此函數
   
    <asp:TextBox ID=txtOwner_Name runat=server Width=px MaxLength=  onkeyup=textLimitCheck(thisspOwner_Name BackColor=Info></asp:TextBox>
   
    <span id=spOwner_Name ><em>(字以內)</em></span>
From:http://tw.wingwit.com/Article/program/net/201311/13129.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.