用Jquery来写:$(".rec3 li:last").css("margin-right", "0px"); 说明: 1、$(".rec3 li:last")选择器下的最后一个元素 2、增加样式
2024-04-29 81
第一个li的样式:li:first-child { background:#f00; }最后一个li的样式:li:last-child { background:#000; }第n个li的样式:li:nth-child(n) { background:#000; }倒数第二个li的样式:nth-last-of-type(2){ background:#000; }奇数列表:li:nth-child(odd) { …
2024-04-29 110
1.把数据绑定到CheckBoxList中特别要注意加载顺序protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { SqlConnection con = GetDBCon.GetCon(); con.Open(); S…
2024-04-24 87
1、用正则验证 ^([0-1]{1}\d|2[0-3]):([0-5]\d)$2、或者直接用MaskedTextBox 控件
2024-04-24 90
要实现文本框只能输入时间格式,可以通过以下步骤:1. 在文本框的属性中设置输入格式为时间格式。2. 给文本框绑定onkeydown事件,通过事件参数e获取当前按下的键和文本框的值。3. 使用正则表达式判断文本框的值是否符合时间格式,如果不符合则阻止键入。以下是示例代码:…
2024-04-24 76