上一页 1 ··· 81 82 83 84 85 86 87 88 89 ··· 122 下一页
摘要: ECSHOP生成站点地图提示”Deprecated: Assigning the return value of new by reference is deprecated in…”。 我的问题在批量上传图片哪里. 定位到报错行 PHP5.3+废除了”=&”符号,对象复制用”=”即可,详细如下: 阅读全文
posted @ 2018-08-21 09:30 与f 阅读(227) 评论(0) 推荐(0)
摘要: 在安装Ecshop的时候,遇到两个问题: 1.Strict Standards: Non-static method cls_image::gd_version() should not be called statically in D:\X\www\ecshop\install\includes 阅读全文
posted @ 2018-08-21 09:20 与f 阅读(188) 评论(0) 推荐(0)
摘要: 1、strtotime基本使用 2、本月最后一天 3、往后一个月 +1 month逻辑 strtotime +1 month -1 month逻辑:先将日期转换成合法的年月日,如strtotime("2018-02-29 -1 month") 2018-02-29,转换为2018-03-01。+1 阅读全文
posted @ 2018-08-20 14:14 与f 阅读(1445) 评论(0) 推荐(0)
摘要: 例子 var TOKEN_KEY = "jwtToken"; //取值 function getJwtToken() { return localStorage.getItem(TOKEN_KEY); }//保存 function setJwtToken(token) { localStorage. 阅读全文
posted @ 2018-08-13 17:40 与f 阅读(1021) 评论(0) 推荐(0)
摘要: //监听工具条 table.on('tool(edit)', function(obj){ var data = obj.data; if(obj.event === 'getinvitation'){ //有个ajax更新,成功后回调函数写下面的更新 //同步更新表... 阅读全文
posted @ 2018-08-13 11:31 与f 阅读(10283) 评论(0) 推荐(1)
摘要: 数据是用ThinkPHP5操作 类型是固定4个, 用layui templet - 自定义模板 方法一: {field:'type', title: '类型', width: 200, templet: '#titleTpl'} <script type="text/html" id="titleT 阅读全文
posted @ 2018-08-13 09:15 与f 阅读(1889) 评论(0) 推荐(0)
摘要: 1.错误日志:warn:an upstream response is buffered to a temporary file 2. a client request body is buffered to a temporary file Nginx 的 buffer 机制: 对于来自 Fast 阅读全文
posted @ 2018-08-09 10:08 与f 阅读(2070) 评论(0) 推荐(0)
摘要: 前言 在做web开发时候很多时候都需要即时监听输入框值的变化,以便作出即时动作去引导浏览者增强网站的用户体验感。而采用onchange时间又往往是在输入框失去焦点(onblur)时候触发,有时候并不能满足条件。 首先看一下dom中元素事件: onpropertychange: IE下,当一个HTML 阅读全文
posted @ 2018-08-08 09:26 与f 阅读(3360) 评论(0) 推荐(0)
摘要: jquery操作select(增加,删除,清空) jQuery添加/删除Select的Option项: jQuery获取Select选择的Text和Value: 通过表单-和name 取值 转:https://www.cnblogs.com/hailexuexi/p/6708110.html 阅读全文
posted @ 2018-08-07 09:49 与f 阅读(3425) 评论(0) 推荐(0)
摘要: var val=$('input:radio[name="sex"]:checked').val(); 附三种方法都可以: $('input:radio:checked').val(); $("input[type='radio']:checked").val(); $("input[name='r 阅读全文
posted @ 2018-08-06 18:08 与f 阅读(150) 评论(0) 推荐(0)
上一页 1 ··· 81 82 83 84 85 86 87 88 89 ··· 122 下一页