上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 21 下一页
摘要: 看看我 读取日期为new Date()格式 Tue May 18 2021 11:10:17 GMT+0800 (中国标准时间) //非IE的xlsx文件的单元格日期原始值会少43秒或44秒 //读取Excel数据 function getExcelData(file, callback) { va 阅读全文
posted @ 2021-05-14 18:26 vvull 阅读(1613) 评论(0) 推荐(0) 编辑
摘要: 版本一 <script> $(function () { //根据contentDocument的高度调整menuFrame的高度 var menuFrame = document.getElementById('menuFrame'); menuFrame.addEventListener('lo 阅读全文
posted @ 2021-05-14 14:34 vvull 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 看看我1 看看我2 Object.keys() Object.values() <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>Test</title> <scrip 阅读全文
posted @ 2021-05-13 14:57 vvull 阅读(1700) 评论(0) 推荐(0) 编辑
摘要: 看看我 var jsonData = XLSX.utils.sheet_to_json(excelData.Sheets[excelData.SheetNames[0]], { defval: '' //单元格为空时的默认值 }); 阅读全文
posted @ 2021-05-11 17:26 vvull 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 看看我 for-in Object.keys(obj) //取值: Object.values(obj); Object.getOwnPropertyNames(obj) 阅读全文
posted @ 2021-05-11 14:56 vvull 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 看看我 My previous post explains how to convert a column to row in JavaScript array. In this post, we will do the same thing but with C# Array and DataTa 阅读全文
posted @ 2021-05-08 14:53 vvull 阅读(1249) 评论(1) 推荐(0) 编辑
摘要: 看看我 Sometimes we need to convert a column to row in JavaScript array. It might be helpful to pass it as web service argument, generating chart dynamic 阅读全文
posted @ 2021-05-08 14:42 vvull 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 看看我 select CONVERT(VARCHAR(20),CAST(10000000.126 AS MONEY),1)--带小数点 select REPLACE(CONVERT(VARCHAR(20),CAST(10000000 AS MONEY),1),'.00','')--不带小数点 阅读全文
posted @ 2021-05-08 10:00 vvull 阅读(582) 评论(0) 推荐(0) 编辑
摘要: 看看我 Request.QueryString[key]、Request.Form[key]默认都会调用函数HttpUtility.UrlDecode(str, encoding),如果HTTP请求的数据只经过一次编码,无需再调用解码函数。 Request.Cookies[key]没用调用解码函数, 阅读全文
posted @ 2021-04-15 17:41 vvull 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 看看我 using System; using System.Collections.Generic; using System.IO; using System.Security.Cryptography; using System.Text; namespace 加密 { class Progr 阅读全文
posted @ 2021-04-15 15:20 vvull 阅读(327) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 21 下一页