06 2013 档案

摘要:$("#txtId").bind("input propertychange change", function (event) { if (event.type != "propertychange" || event.originalEvent.propertyName == "value") { $(this).css({"border": "1px solid red"}); } }); 阅读全文
posted @ 2013-06-14 11:18 一千零一夜 阅读(7160) 评论(0) 推荐(0)
摘要:CommonJsonModelAnalyzer.csusing System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConvertJosn{ public class CommonJsonModelAnalyzer { protected string _GetKey(string rawjson) { if (string.IsNullOrEmpty(rawjson)) return... 阅读全文
posted @ 2013-06-07 21:04 一千零一夜 阅读(3254) 评论(0) 推荐(0)
摘要:public delegate void MyDelegate(object sender, EventArgs e); protected void Page_Load(object sender, EventArgs e) { MyDelegate md = new MyDelegate(Button1_Click); //md(Button1, null); md(Button1, new System.EventArgs()); //MyDelegate md1 = new MyDelegate(DropDownLis... 阅读全文
posted @ 2013-06-07 20:50 一千零一夜 阅读(143) 评论(0) 推荐(0)