02 2018 档案
摘要:public ActionResult Index() { #region 写入Cookies HttpCookie cookie = new HttpCookie("CookieName");//初使化并设置Cookie的名称 DateTime dt = DateTime.Now; //获取当前时间 ...
阅读全文
摘要:private void button1_Click(object sender, EventArgs e) { int a = 6; int b = 66; Fun(ref a,ref b); //把a的地址和b的地址 传递过去 MessageBox.Show(a....
阅读全文
摘要:$('input').attr("readonly", ""); $('input').attr("disabled", "false"); $("input[type=checkbox]").each(function () { $(this).attr("disabled", false); }
阅读全文
摘要:// 分隔符号 // 功能 遍历html select 标签 中的键值对 加入到集合 //循环查找字符串并截取
阅读全文
摘要:upload $("#upload").click(function () { console.log("123"); var formData = new FormData($("#uploadForm")[0]); ...
阅读全文