上一页 1 ··· 78 79 80 81 82 83 84 85 86 ··· 97 下一页
摘要: javascript 字符串转化成函数执行<pre>function func_abc(){ alert('a');}var str = "func_abc";eval(str+"()");//执行func_abc()函数</pre> 阅读全文
posted @ 2019-11-14 12:29 newmiracle宇宙 阅读(3296) 评论(0) 推荐(0) 编辑
摘要: PHP Notice: Undefined index:解决方法 PHP Notice: Undefined index: 解决方法 <pre> if (empty(swoole_get_local_ip()['eth1'])) { } else { }</pre> 加个exmpty就可以了 阅读全文
posted @ 2019-11-14 12:28 newmiracle宇宙 阅读(353) 评论(0) 推荐(0) 编辑
摘要: windows下载安装swoole的方法先安装Cygwin 选择163镜像(速度非常快) add url http://mirrors.163.com/cygwin/ 然后安装gcc php pcre-devel autoconf模块 如图下 选择安装的软件包,这里需要安装gcc、php、php开发 阅读全文
posted @ 2019-11-14 12:28 newmiracle宇宙 阅读(581) 评论(0) 推荐(0) 编辑
摘要: jquery判断手指滑动方向 <pre> /*判断哪个滑动方向还是自己改下 要么上下 要么左右*/ var startX; var startY; $(".shanghua").on("touchstart", function(e) { // 判断默认行为是否可以被禁用 if (e.cancela 阅读全文
posted @ 2019-11-14 12:26 newmiracle宇宙 阅读(355) 评论(0) 推荐(0) 编辑
摘要: javascript监听手机返回键 <pre> if (window.history && window.history.pushState) { $(window).on('popstate', function() { var hashLocation = location.hash; var 阅读全文
posted @ 2019-11-14 12:26 newmiracle宇宙 阅读(291) 评论(0) 推荐(0) 编辑
摘要: html5 点击播放video的方法<pre> <video videosrc="{$vo.shipinurl}" controls="" x5-playsinline="" playsinline="" webkit-playsinline="" poster=""> </video> var v 阅读全文
posted @ 2019-11-14 12:22 newmiracle宇宙 阅读(4807) 评论(0) 推荐(0) 编辑
摘要: <pre>php 5.5使用 array_column的方法</pre> <pre> public function array_column($input, $columnKey, $indexKey = null) { $columnKeyIsNumber = (is_numeric($colu 阅读全文
posted @ 2019-11-14 12:22 newmiracle宇宙 阅读(279) 评论(0) 推荐(0) 编辑
摘要: mysql并发量过大造成 update语句更新错误 在同一字段的时候更新的时候 如果并发量太大 就会更新错误 这个时候只能用 swoole 消息队列更新 阅读全文
posted @ 2019-11-14 12:21 newmiracle宇宙 阅读(1317) 评论(0) 推荐(0) 编辑
摘要: html5 微信真机调试方法 vConsolehttps://blog.csdn.net/weixin_36934930/article/details/79870240 阅读全文
posted @ 2019-11-14 12:05 newmiracle宇宙 阅读(627) 评论(0) 推荐(0) 编辑
摘要: jquery设置html5音量的方法<pre> setTimeout(function() { alert(1); $('#music1')[0].volume = 0; setTimeout(function() { alert(2); $('#music1')[0].volume = 1; }, 阅读全文
posted @ 2019-11-14 12:04 newmiracle宇宙 阅读(1002) 评论(0) 推荐(0) 编辑
上一页 1 ··· 78 79 80 81 82 83 84 85 86 ··· 97 下一页