Live2D
摘要: BEGIN TRANSACTION; declare @Id datetime DECLARE My_Cursor CURSOR --定义游标 FOR (select columnName from tableName ) --查出需要的集合放到游标中 OPEN My_Cursor; --打开游标 阅读全文
posted @ 2023-10-19 10:24 webmtjj 阅读(6) 评论(0) 推荐(0) 编辑
摘要: public static string ConvertUploadFileToBase64(HttpPostedFileBase file) { using (MemoryStream memoryStream = new MemoryStream()) { file.InputStream.Co 阅读全文
posted @ 2023-09-05 19:14 webmtjj 阅读(172) 评论(0) 推荐(0) 编辑
摘要: jQuery复制文本 //copyId 要复制的内容 function copy(copyId) { console.log(copyId) var oInput = document.createElement('input'); oInput.value = copyId; document.b 阅读全文
posted @ 2023-07-17 16:10 webmtjj 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 获取控制器名称 this.ControllerContext.RouteData.Values["controller"].ToString() 获取方法名称 {this.ControllerContext.RouteData.Values["action"].ToString() 阅读全文
posted @ 2023-03-14 20:52 webmtjj 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 手机网页支付宝支付api https://opendocs.alipay.com/open/203/105285 引用支付宝sdk 支付配置 /// <summary> /// 手机网页支付配置 /// </summary> public class MobileConfig { // 应用ID,您 阅读全文
posted @ 2023-03-09 20:27 webmtjj 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 第一种: var str="{\"success\":true,\"jdStudentInfoCount\":1}" dynamic obj = Newtonsoft.Json.JsonConvert.DeserializeObject(str); var infoCount= obj.jdStud 阅读全文
posted @ 2023-03-09 17:22 webmtjj 阅读(3202) 评论(0) 推荐(0) 编辑
摘要: 移动端safari浏览器无法通过window.open在新标签打开链接。因为浏览器为了避免弹出广告影响用户,禁用了通过代码调用超链接在新标签打开页面的功能。这就意味着,要想在新标签打开链接,只能通过用户点击a标签或者关闭浏览器的防止弹窗功能。 只需要把打开链接的操作放到setTimeout里运行即可 阅读全文
posted @ 2023-03-08 09:35 webmtjj 阅读(487) 评论(0) 推荐(0) 编辑
摘要: /*滚动条样式start*/ ::-webkit-scrollbar { width: 3px; height: 8px; } ::-webkit-scrollbar-button { width: 0; height: 0; } ::-webkit-scrollbar-thumb { min-he 阅读全文
posted @ 2022-12-30 17:14 webmtjj 阅读(253) 评论(0) 推荐(0) 编辑
摘要: table复杂表头 下面将是我们要实现的效果 下面是后台返回的数据 复杂表头重要的属性: rowspan colspan 需要注意的是循环生成表头时,循环时不会执行templet里面的代码,在table渲染时才会执行,如果直接在templet里用变量,那么取到的数据是有问题的,需要借助属性来避免这个 阅读全文
posted @ 2022-12-28 17:28 webmtjj 阅读(2224) 评论(0) 推荐(0) 编辑
摘要: https://datav.aliyun.com/portal/school/atlas/area_selector 地图框选器 阅读全文
posted @ 2022-12-22 16:08 webmtjj 阅读(22) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示