上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页
摘要: 犯了好多次这问题,使用calc的时候中间要加空格 calc(100%-10px);× calc(100% - 10px);✓ 阅读全文
posted @ 2022-11-11 16:49 奇迹之耀 阅读(17) 评论(0) 推荐(0) 编辑
摘要: $('div').on('focusout', function () { console.log('focus out') }); $('div').on('focusin', function () { console.log('focus in') }); <div contenteditab 阅读全文
posted @ 2022-11-08 16:25 奇迹之耀 阅读(210) 评论(0) 推荐(0) 编辑
摘要: <script> $("#under").click(function () { var sec = getSelection() if (sec == undefined) { return; } ReplaceInnerHtml(sec.selectStr, GetSelectedStyle(s 阅读全文
posted @ 2022-11-08 14:33 奇迹之耀 阅读(542) 评论(0) 推荐(0) 编辑
摘要: 转载:纯css实现table固定首行、首列以及最后一列冻结 - IT民工郑小江 - 博客园 (cnblogs.com) postion的sticky粘性定位 粘性定位可以被认为是相对定位和固定定位的混合。元素在跨越特定阈值前为相对定位,之后为固定定位。 sticky元素会“固定”在离它最近的一个拥有 阅读全文
posted @ 2022-10-31 11:29 奇迹之耀 阅读(3486) 评论(0) 推荐(0) 编辑
摘要: 新建项目时,选择Professional 阅读全文
posted @ 2022-10-27 16:28 奇迹之耀 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 在table的样式中加入table-layout: fixed,并且留下一列不设置宽度,让其自适应宽度 <table id="table" style="table-layout: fixed" class="layui-table"> <colgroup> <col> <col width="20 阅读全文
posted @ 2022-10-27 10:56 奇迹之耀 阅读(923) 评论(0) 推荐(0) 编辑
摘要: 调用layer内部名为Func的方法 $("#layui-layer-iframe" + layerId)[0].contentWindow.Func(); 获取layerId layerId = layer.open({ type: 2, shadeClose: true, title: '测试' 阅读全文
posted @ 2022-10-24 14:25 奇迹之耀 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 转载Git的下载安装及配置 - 知乎 (zhihu.com) 1、Git的下载与安装 Git下载地址如下 Git - Downloads​git-scm.com/downloads 根据系统需求下载相应的Git版本,国内的下载总会出现服务器连接失败或者下载失败等问题,所以建议使用VPN下载。 按照安 阅读全文
posted @ 2022-10-16 23:05 奇迹之耀 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 提供一种解决思路,将下拉菜单的position设为fixed <style> #form .layui-anim { height: 300px; min-width: 200px; position:fixed; } </style> <form id="form" class="layui-fo 阅读全文
posted @ 2022-10-14 09:54 奇迹之耀 阅读(366) 评论(0) 推荐(0) 编辑
摘要: HSSFRow row = (HSSFRow)sheet.GetRow(1); string formatString = ((HSSFCell)row.GetCell(2)).CellStyle.GetDataFormatString(); string value = ((HSSFCell)ro 阅读全文
posted @ 2022-10-12 10:43 奇迹之耀 阅读(35) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页