• 实时统计textBox中的字数?。。。。。。。。。。。。。。。


    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="TextBox.aspx.cs" Inherits="TextBox" %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        <title>无标题页</title>
             
    <script language="javascript" type="text/javascript">
    function  editorCheck()

        var textBox1 = document.getElementById("TextBox1").value;
        var n = 8 - textBox1.length;
        if(n < 0)
        {
          document.getElementById("Label1").style.color= "#FF0000";
        } 
        else
        {
          document.getElementById("Label1").style.color= "#008000";
        }
    }
     </script>
    </head>
    <body>
        <form id="form1" runat="server">
     <div>
            <asp:TextBox ID="TextBox1" runat="server" Height="373px" TextMode="MultiLine" Width="429px" onkeyup="editorCheck()"   onpropertychange="javascript:document.getElementById('Label1').innerText='您还可输入 ' + (8 - this.value.length) + ' 个字符'" OnTextChanged="TextBox1_TextChanged"></asp:TextBox>
            <asp:Label ID="Label1" runat="server" Font-Bold="True" Font-Underline="False" ForeColor="#008000"
                Height="31px" Width="326px">您还可输入 8000 个字符</asp:Label>
         <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="检查..." /></div>  

        </form>
    </body>
    </html>



    ================================================================

        <div>
            <asp:TextBox ID="TextBox1" runat="server" Height="373px" TextMode="MultiLine" Width="429px"  onpropertychange="javascript:document.getElementById('Label1').innerText='您还可输入 ' + (8 - this.value.length) + ' 个字符'"></asp:TextBox>
            <asp:Label ID="Label1" runat="server" Font-Bold="True" Font-Underline="False" ForeColor="Red"
                Height="31px" Width="326px">您还可输入 8000 个字符</asp:Label></div>  

    //********************************************************************  后台。。。


    protected void Button1_Click(object sender, EventArgs e)
        {
            if (System.Text.RegularExpressions.Regex.IsMatch(this.Label1.Text, "-"))
            {
                //return true;
                Page.RegisterStartupScript("onclick ", " <script> alert( 'alert!!alert!! '); </script> ");
            }
        }
        protected void TextBox1_TextChanged(object sender, EventArgs e)
        {
            int i = this.TextBox1.Text.Length;
            this.Label1.Text = "您还可输入 " + Convert.ToString(8 - i) + " 个字符";

        }
        protected void Button2_Click(object sender, EventArgs e)
        {
            if (System.Text.RegularExpressions.Regex.IsMatch(this.Label1.Text, "-"))
            {
                Response.Write(this.Label1.Text);
            }
           
        }

  • 相关阅读:
    es6学习笔记--let和const
    最新数组方法(包括es6)
    es6学习笔记--模板字符串
    版本控制工具--svn和git的使用(三) -----git的使用(2)
    版本控制工具--svn和git的使用(三) -----git的使用(1)
    版本控制工具--svn和git的使用(二) -----SVN的操作
    版本控制工具--svn和git的使用(一) -----版本控制的好处以及分类
    e.preventDefault()和e.stopPropagation()以及return false的作用和区别
    Mybatis之SessionFactory原理
    Mybatis架构简介
  • 原文地址:https://www.cnblogs.com/Fooo/p/1071066.html
Copyright © 2020-2023  润新知