彩票走势图

ASP.NET 2.0 及其以后的版本中 CheckBox 控件的两个新属性

翻译|其它|编辑:郝浩|2008-06-26 10:56:51.000|阅读 1115 次

概述:

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

      在ASP.NET 2.0及其以后的版本中, CheckBox 控件新增加了两个属性:InputAttributes 和 LabelAttributes 。利用这两个属性,可以很方便地为label和input标签添加自定义属性,而使用 Attributes 则是不能完成这个任务的。不过,这个功能有些人还不知道,常被忽略。下面就是他们的使用方法:

<%@ Page Language="C#" AutoEventWireup="true" %>

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

<script runat="server">

  protected void Page_Load(object sender, EventArgs e)
  {
    CheckBox1.InputAttributes.Add("onmouseover", "alert('I am input\'s mouseover 事件哦。')");
    CheckBox1.LabelAttributes.Add("onmouseover", "alert('I am label\'s mouseover 事件哦。')");

  }
</script>

<html xmlns="//www.w3.org/1999/xhtml">
<head runat="server">
<title>孟宪会之测试</title>
</head>
<body>
<form id="form1" runat="server">
<asp:CheckBox ID="CheckBox1" runat="server" Text="选择项" />
</form>
</body>
</html>

生成的客户端代码如下:

<input id="CheckBox1" type="checkbox" name="CheckBox1" onmouseover="alert('I am input's mouseover 事件哦。')" />
<label for="CheckBox1" onmouseover="alert('I am label's mouseover 事件哦。')">选择项</label>
标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:CSDN

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP