• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Asp.net中,Javascript操作textBox的属性应用()

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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>

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
[翻译]在Asp.net2.0中操作数据::母板页和站点导航发布时间:2022-07-10
下一篇:
ASP.net知识框架发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap