摘要:
``` $.messager.defaults = { ok: "是", cancel: "否", width: 300 }; $.messager.confirm('删除记录', 'Please enter your name:', function (r) { if (r) { alert('Your name is:' + r); } }); ``` 阅读全文
摘要:
``` Object.prototype.toString.call(o) == '[object Array]'; ``` 阅读全文
摘要:
HttpUtility.UrlEncode("转码字符串"); js需要转码 decodeURIComponent("返回的字符串"); 阅读全文