zoukankan      html  css  js  c++  java
  • Asp.net中, Javascript 操作textBox的属性应用()

    If a control is disabled it cannot be edited and its content is excluded when the form is submitted.If a control is readonly it cannot be edited, but its content (if any) is still included with the submission. 

    即: 当ReadOnly=True时,控件ID在前后天仍可以被查询到。而当Diabled=True, 或者当Visible=True时,一旦Form被前台递交,其ID将不再被前台识别;此时,TextBox空间和Label空间功能将相差无几。

    实际代码中,由于Label控件的局限性,很多时候借用TextBox控件,但显示时何Label一样。如下代码

     <asp:Textbox ID="lblComment"  runat="server" Width="200" ReadOnly="true"  Visible="True" BorderWidth="0px" BorderStyle="None" >

                        </asp:Textbox>

    简单分析如下: 将 BorderWidth 设置为0,BorderStyle设置为None,其显示将和Label一样。Readonly设置为True,内部文字将不会被编辑。 

     下文增加一个js的控件属性修改function

    function ShowComment(selectedcontrol, control1, control2, judgePara, width1, width2, msg) {
        if (control1 != null && control2 != null) {
            if (selectedcontrol.value == judgePara) {
                control1.value = msg;
                control2.style.width = width1;
            }
            else {
                control1.value = "";
                control2.style.width = width2;
            }
        }
    }

    其调用方法

    <aspx:Textbox ID="txtCodeKubun" runat="server" ImeMode="Disabled" Width="30px" TabIndex="1"
                        onFocus="OnGreen('txtCodeKubun')"
                        onkeyup="TxtChange(this,document.getElementById('cmbCodeKubun'))"
                        onblur="TxtChangeBlur(this,document.getElementById('cmbCodeKubun'))"
                        onchange="ShowComment(this,document.getElementById('lblComment'),
                                                   document.getElementById('txtComment'),
                                                   '013','185px','400px','*Comment: how are you!')"
                        MaxLength="3" LengthAsBytes="true">
                    </aspx:Textbox>
    Love it, and you live without it
  • 相关阅读:
    好用的辅助工具
    摆脱单体架构黑洞>>>>走向微服务的乐园
    什么是 jQuery 事件
    WebDriver一些常见问题的解决方法【转】
    IE浏览器相关的问题及解决方案[转]
    fix org.openqa.selenium.NoSuchWindowException when find element on ie11.
    BI案例:BI在连锁零售业应用(ZT)【转】
    SQL 基础语法(创建表空间、用户、并授予权限、数据的增删改查) --(学习笔记)[转]
    创建数据库和表的SQL语句【转】
    T-sql语句中GO的作用及语法【转】
  • 原文地址:https://www.cnblogs.com/tomclock/p/7630570.html
Copyright © 2011-2022 走看看