超灬超  
上一页 1 2 3 4 5 6 7 ··· 11 下一页

2021年3月8日

摘要: swiper display:none 后 在显示 滑动问题 一般这种问题 必须在本身元素 或者父元素 显示出来 然后调用swiper实例 或者只需加两行 1 2 observer:true, // 修改swiper自己或子元素时,自动初始化swiper observeParents:true // 阅读全文
posted @ 2021-03-08 13:59 超灬超 阅读(111) 评论(0) 推荐(0) 编辑

2021年1月19日

摘要: {for start="开始值" end="结束值" comparison="" step="步进值" name="循环变量名" } {/for}开始值、结束值、步进值和循环变量都可以支持变量,开始值和结束值是必须,其他是可选。comparison 的默认值是lt,name的默认值是i,步进值的默认 阅读全文
posted @ 2021-01-19 16:29 超灬超 阅读(756) 评论(0) 推荐(0) 编辑
 
摘要: fwrite($fp, mb_convert_encoding( $content, 'UTF-8', mb_detect_encoding($content) ) ); 阅读全文
posted @ 2021-01-19 09:02 超灬超 阅读(1753) 评论(0) 推荐(0) 编辑

2021年1月11日

摘要: function updateRich(content){ var reg = new RegExp(/style\s*?=\s*?(['"])[\s\S]*?\1/,"g");//g,表示全部替换。 let content1 = content.replace(reg,""); var reg2 阅读全文
posted @ 2021-01-11 16:30 超灬超 阅读(520) 评论(0) 推荐(0) 编辑

2021年1月7日

摘要: /*判断是否微信环境*/ function is_weixin() { if (strpos($_SERVER['HTTP_USER_AGENT'], 'MicroMessenger') !== false) { return true; } return false; } /** * 获取wx_c 阅读全文
posted @ 2021-01-07 10:13 超灬超 阅读(84) 评论(0) 推荐(0) 编辑
 
摘要: /** * 验证手机号 */ function isPhone($str) { if (preg_match("/^1[3456789]\d{9}$/", $str)) { return true; } else { return false; } } /** * 判断是否为合法的身份证号码 * @ 阅读全文
posted @ 2021-01-07 10:09 超灬超 阅读(93) 评论(0) 推荐(0) 编辑

2020年12月30日

摘要: 苹果手机页面高度不够会导致下面fixed的按钮看不到了 阅读全文
posted @ 2020-12-30 10:02 超灬超 阅读(194) 评论(0) 推荐(0) 编辑

2020年12月29日

摘要: 后台传日期格式到前端js: 具体要求是 日期要用/隔开,否则会触发直接倒计时结束: //苹果倒计时只能用 / 不然直接会跳转到0 if($this->clientOS() == 'iphone'){ $this->assign('end_time', date('Y/m/d H:i:s', $use 阅读全文
posted @ 2020-12-29 10:01 超灬超 阅读(153) 评论(0) 推荐(0) 编辑

2020年12月17日

摘要: 报错如下:Class 'GatewayWorker\Protocols\GatewayProtocol' not found 怎么都无法自动引入类的: 解决方法修改文件为require_once: vendor\workerman\gateway-worker\src\Gateway.php中加入 阅读全文
posted @ 2020-12-17 14:45 超灬超 阅读(1087) 评论(0) 推荐(0) 编辑

2020年12月14日

摘要: easy引入请使用composer自行处理 php代码: if ($order['pay_price'] > 0) { /*返回给支付二维码 还有官方收款码*/ $app = $this->get_wechat_pay_app(); $jssdk = $app->jssdk; $pay_param 阅读全文
posted @ 2020-12-14 11:16 超灬超 阅读(499) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页