摘要: 无标题文档12341234 阅读全文
posted @ 2015-06-02 16:18 自由无风 阅读(352) 评论(0) 推荐(0) 编辑
摘要: .children() : 取得匹配元素的子元素集合.next() :取得匹配元素后面紧邻的同辈元素.prev() :取得匹配元素前面紧邻的同辈元素.siblings() :取得匹配元素前、后的所有同辈元素closest() :取得最近的匹配元素ddddddssssssssssaaaaaaaaaii... 阅读全文
posted @ 2015-06-02 14:35 自由无风 阅读(1167) 评论(0) 推荐(0) 编辑
摘要: 今天在做项目时,遇到了这么个问题。先声明一下,我的id都是动态变换的。从1-10呢。...这里,我就列举3个做示范。循环给 a1 a2 a3 赋值,for(var i=1;i<=3;i++){$("#a"+i).html("我是"+i); // 红色部分是不识别的。}大家注意这个写法"#a"+i(简... 阅读全文
posted @ 2015-06-02 14:34 自由无风 阅读(2455) 评论(0) 推荐(0) 编辑
摘要: public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { ... 阅读全文
posted @ 2015-06-01 20:50 自由无风 阅读(254) 评论(0) 推荐(0) 编辑
摘要: public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { ... 阅读全文
posted @ 2015-06-01 19:52 自由无风 阅读(16593) 评论(0) 推荐(0) 编辑
摘要: 服务器端using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Ne... 阅读全文
posted @ 2015-05-31 15:57 自由无风 阅读(521) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Drawing;using System.Windows.Forms;using System.Threading;namespace WindowsFormsApplication1{ public partial class Form1 ... 阅读全文
posted @ 2015-05-31 10:39 自由无风 阅读(4191) 评论(1) 推荐(2) 编辑
摘要: private void Form1_Load(object sender, EventArgs e) { //取消跨线层访问控件的判断 Control.CheckForIllegalCrossThreadCalls = false; ... 阅读全文
posted @ 2015-05-31 08:45 自由无风 阅读(576) 评论(0) 推荐(0) 编辑
摘要: public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { /... 阅读全文
posted @ 2015-05-31 08:18 自由无风 阅读(455) 评论(0) 推荐(0) 编辑
摘要: private void timer2_Tick(object sender, EventArgs e) { lbltime.Text = DateTime.Now.ToString(); if (DateTime.Now.Hour... 阅读全文
posted @ 2015-05-26 19:45 自由无风 阅读(1014) 评论(0) 推荐(0) 编辑