摘要: ``` $.messager.defaults = { ok: "是", cancel: "否", width: 300 }; $.messager.confirm('删除记录', 'Please enter your name:', function (r) { if (r) { alert('Your name is:' + r); } }); ``` 阅读全文
posted @ 2020-04-11 18:02 唯爱金生 阅读(1373) 评论(1) 推荐(0) 编辑
摘要: ``` Object.prototype.toString.call(o) == '[object Array]'; ``` 阅读全文
posted @ 2020-04-11 14:32 唯爱金生 阅读(159) 评论(0) 推荐(0) 编辑
摘要: HttpUtility.UrlEncode("转码字符串"); js需要转码 decodeURIComponent("返回的字符串"); 阅读全文
posted @ 2020-04-11 10:06 唯爱金生 阅读(359) 评论(0) 推荐(0) 编辑