摘要: var iconList = document.querySelectorAll('.icon-gouwuche1'); for (var i = 0; i < iconList.length; i++) { iconList[i].click(); } 阅读全文
posted @ 2022-04-02 17:18 meliuxy 阅读(117) 评论(0) 推荐(0) 编辑
摘要: ERROR in ./src/my-theme/index.less (./node_modules/_css-loader@1.0.0@css-loader!./node_modules/_less-loader@4.1.0@less-loader/dist/cjs.js!./src/my-the 阅读全文
posted @ 2022-03-30 11:43 meliuxy 阅读(528) 评论(0) 推荐(0) 编辑
摘要: composer require --dev "kitloong/laravel-migrations-generator" 这个命令试试,我测试了可效。之后运行 php artisan migrate:generate 可以直接生成migration文件 https://github.com/ki 阅读全文
posted @ 2022-03-25 17:03 meliuxy 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 问题及原因: window2008下iis7环境下,url中包含空格或加号的伪静态,将不能正常访问,比如:http://www.abc.com/gyd+cc.html 会出现请求筛选模块被配置为拒绝包含双重转义序列的请求。浏览器返回 HTTP 错误 404.11 – Not Found错误。 解决办 阅读全文
posted @ 2020-07-24 14:05 meliuxy 阅读(833) 评论(0) 推荐(0) 编辑
摘要: 应用场景 如果本地已经安装了高版本的 目标框架 那么低版本的是安装不了的 但是项目确是低版本的 为了不弹出更新框架 可以 把别的机器的 目标框架拷贝到该目录下 vs 目标框架 C:\Program Files (x86)\Reference Assemblies\Microsoft\Framewor 阅读全文
posted @ 2020-06-16 00:07 meliuxy 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 当页面上的某个TextBox 设置了属性ReadOnly = "True" 或 Enabled = "False" 时,在客户端为其赋值后,在后台代码中却无法获得该值,可以通过如下的方式解决这个问题:1、不设置ReadOnly,设置onfocus=this.blur() <asp:TextBox I 阅读全文
posted @ 2019-02-14 14:33 meliuxy 阅读(819) 评论(0) 推荐(1) 编辑
摘要: 不规则的json数组 解析 1、首先需要序列化 dynamic 2、遍历 List<dynamic> 3、遍历 data1、data2 data.Value.name 阅读全文
posted @ 2019-01-23 09:02 meliuxy 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1 <script type="text/javascript" src="../../Scripts/Plugins/kindeditor/kindeditor.js"></script> 2 <script type="text/javascript"> 3 4 var editor; 5 Ki 阅读全文
posted @ 2019-01-16 13:48 meliuxy 阅读(720) 评论(0) 推荐(0) 编辑
摘要: 1 private void ToExcel(string html) 2 { 3 4 Response.ContentType = "application/force-download"; 5 Response.AddHeader("content-disposition", 6 ... 阅读全文
posted @ 2019-01-07 08:51 meliuxy 阅读(2317) 评论(0) 推荐(0) 编辑
摘要: 1、常见方法 display:none 这个方法的问题是 元素被隐藏了 同时该元素不占位置了,应该也可以说该元素没有高度和宽度了2、常见方法visibility:hidden; 这个方法和display 都是常规的方法 但是 它隐藏了元素后元素还是占着原来的位置的3、opacity:0 这个方法 就... 阅读全文
posted @ 2015-04-28 09:17 meliuxy 阅读(604) 评论(0) 推荐(2) 编辑