上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: 首先需要引用程序集 Microsoft Script Control 1.0然后新建一个js文件,并写入相应的js方法//执行JS文件 private void btnjs_Click(object sender, EventArgs e) { //... 阅读全文
posted @ 2015-01-24 11:11 JasonGu0 阅读(10927) 评论(0) 推荐(1) 编辑
摘要: var s= document.getElementById("id");var chils= s.childNodes; //得到s的全部子节点var par=s.parentNode; //得到s的父节点var ns=s.nextSbiling; //获得s的下一个兄弟节点【该变量测试... 阅读全文
posted @ 2015-01-16 12:45 JasonGu0 阅读(193) 评论(0) 推荐(0) 编辑
摘要: public static int Asc(string character) { if (character.Length == 1) { System.Text.ASCIIEncoding asciiEncoding = new System.Text.ASCIIEncoding... 阅读全文
posted @ 2015-01-16 12:44 JasonGu0 阅读(1089) 评论(1) 推荐(0) 编辑
摘要: //ASCII码转换字符function asciiToStr(code) { //alert("code:" + code + "\r\n字符:" + String.fromCharCode(code)); return String.fromCharCode(code);}//字符转... 阅读全文
posted @ 2015-01-15 17:39 JasonGu0 阅读(660) 评论(0) 推荐(0) 编辑
摘要: json格式的数据遍历【循环】如果数据结构是这样var data=[{name:"a",age:12},{name:"b",age:11},{name:"c",age:13},{name:"d",age:14}]; for(var o in data){ alert(o);//索引 0,1... 阅读全文
posted @ 2015-01-07 11:38 JasonGu0 阅读(521) 评论(0) 推荐(0) 编辑
摘要: #region 分钟数转换成倒计时,格式 _天_时_分 + string MinutesToCountdown(int Minutes) /// /// 将分钟数转换成倒计时 格式:_天_时_分 /// /// 分钟数 //... 阅读全文
posted @ 2015-01-05 09:54 JasonGu0 阅读(417) 评论(0) 推荐(0) 编辑
摘要: //方法一 if (e.KeyChar == 0x20) e.KeyChar = (char)0; //禁止空格键 if ((e.KeyChar == 0x2D) && (((TextBox)sender).Text.Length =... 阅读全文
posted @ 2014-12-31 15:44 JasonGu0 阅读(184) 评论(0) 推荐(0) 编辑
摘要: // 保存 Cookiefunction setCookie(name, value) { expires = new Date(); expires.setTime(expires.getTime() + (1000 * 86400 * 365)); document.cooki... 阅读全文
posted @ 2014-12-27 17:07 JasonGu0 阅读(149) 评论(0) 推荐(0) 编辑
摘要: //定义类 public class MyClass { public int Property1 { get; set; } public string Property2 { get; set; } } MyClass tmp_Clas... 阅读全文
posted @ 2014-12-25 16:39 JasonGu0 阅读(391) 评论(0) 推荐(0) 编辑
摘要: //所有的特性必须要继承ValidationAttribute public class MaxWordsAttribute : ValidationAttribute { //该参数是验证条件【构造函数里面可以增加验证条件】 private readonl... 阅读全文
posted @ 2014-12-24 17:21 JasonGu0 阅读(123) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页