摘要:
//除法 function dataDivisition(a, b) { if (b != "0") { return (a / b * 100).toFixed(2) + "%"; } return "0%"; }//查找集合某个对象是否存在,不存在就新增 function arrDeal(arr 阅读全文
摘要:
//父级弹窗 function showAlertOrg() { layui.use('layer', function () { var body; var index = layer.open({ title: '接待单位', type: 2, btn: ['确认'], content: "/m 阅读全文
摘要:
insert delete update select 选择数据库进行操作select top 1 * from smzx2018.dbo.tbuseruse smzx2018;select top 1 * from tbuser 基础操作select COUNT(userid) from smzx 阅读全文
摘要:
当 IIS7/7.5 收到的请求头的长度超过16K(默认值),就会引发"Bad Request - Request Too Long. HTTP Error 400. The size of the request headers is too long."的错误。 最简单的办法就是 F12 清除浏 阅读全文