上一页 1 ··· 70 71 72 73 74 75 76 77 78 ··· 97 下一页
摘要: 网站提示“访问网站包含恶意软件”怎么申诉移除http://jingyan.baidu.com/article/c1465413922aa50bfcfc4c39.html看这个贴一下站长工具地址https://www.google.com/webmasters/tools/home?hl=zh-TW& 阅读全文
posted @ 2019-11-14 13:15 newmiracle宇宙 阅读(212) 评论(0) 推荐(0) 编辑
摘要: php修改网站默认编码网站如果header 不指定utf8默认 不是utf8 所以输入中文显示会乱码 一般都是apache不是不是utf8 打开 apache 配置文件 httpd.conf 加个 AddDefaultCharset UTF-8 默认编码就行 这样传到客户端的编码默认都是utf8了 阅读全文
posted @ 2019-11-14 13:13 newmiracle宇宙 阅读(488) 评论(0) 推荐(0) 编辑
摘要: html5不能播放视频的方法H5不能播放视频的方法 格式工厂转换成 AVC 注意音频流 采样率和比特率 设置低一点 不然播放会卡住 还有点击播放必须要click 不要用touchstart没效果的 阅读全文
posted @ 2019-11-14 13:12 newmiracle宇宙 阅读(920) 评论(0) 推荐(0) 编辑
摘要: jquery each循环遍历完再执行的方法 因为each是异步的 所以要加计数器. var eachcount=0; <pre> $(".emptytip").each(function(){ eachcount++ console.log(eachcount); if(eachcount>=$( 阅读全文
posted @ 2019-11-14 13:11 newmiracle宇宙 阅读(558) 评论(0) 推荐(0) 编辑
摘要: mysql找出重复数据的方法<pre>select openid,count(openid) from info group by openid,jichushezhi_id HAVING count(openid)>1</pre> 阅读全文
posted @ 2019-11-14 13:11 newmiracle宇宙 阅读(1165) 评论(0) 推荐(0) 编辑
摘要: PHP判断数组下标有没有存在的方法<pre>if(!empty($token['errcode'])){ print_r($token['errmsg']); exit();}</pre> 这样就不会报错了 阅读全文
posted @ 2019-11-14 13:10 newmiracle宇宙 阅读(1626) 评论(0) 推荐(0) 编辑
摘要: jquery each循环遍历完再执行的方法 因为each是异步的 所以要加计数器. var eachcount=0; <pre> $(".emptytip").each(function(){ eachcount++ console.log(eachcount); if(eachcount>=$( 阅读全文
posted @ 2019-11-14 13:10 newmiracle宇宙 阅读(2276) 评论(1) 推荐(0) 编辑
摘要: mysql General error: 1366 Incorrect string value: '\xF0\x9F\x91\x8D\xF0\x9F...' for column 'dianpumiaoshu' at row 1 解决方法 因为传入了emoji表情 曾经考虑过过滤 但是行不通 所以 阅读全文
posted @ 2019-11-14 13:09 newmiracle宇宙 阅读(1100) 评论(0) 推荐(0) 编辑
摘要: php swoole异步处理mysql <pre>//创建websocket服务器对象,监听0.0.0.0:9509端口//异步测试$ws = new swoole_websocket_server("0.0.0.0", 9600); $ws->set(array( 'worker_num' => 阅读全文
posted @ 2019-11-14 13:08 newmiracle宇宙 阅读(467) 评论(0) 推荐(0) 编辑
摘要: jquery手指触摸滑动放大图片的方法(比较靠谱的方法) <pre><!DOCTYPE html><html lang="zh-cn"><head> <title>touch.js demo</title> <meta charset="utf-8" /> <meta name="viewport" 阅读全文
posted @ 2019-11-14 13:08 newmiracle宇宙 阅读(800) 评论(0) 推荐(0) 编辑
上一页 1 ··· 70 71 72 73 74 75 76 77 78 ··· 97 下一页