上一页 1 ··· 60 61 62 63 64 65 66 67 68 ··· 98 下一页
摘要: 谷歌浏览器调试javascript方法 1 ctrl + shift + f 全局文件搜索 然后加断点 也可以直接编辑js文件 保存后 就更新了 一般用在点击事件上 ps:如果加了断点 刷新浏览断点消失了 就看 文件后缀是不是加版本号 每次刷新都是重新加载文件 阅读全文
posted @ 2019-11-15 12:22 newmiracle宇宙 阅读(500) 评论(0) 推荐(0)
摘要: IP address '121.41.35.30' could not be resolved: Name or service not known解决方法 添加如下 然后重启 即可解决<pre>[mysqld] skip-name-resolve</pre> 如果报如下错误2017-05-09 1 阅读全文
posted @ 2019-11-15 12:21 newmiracle宇宙 阅读(1607) 评论(0) 推荐(0)
摘要: jquery json对象转换 <pre>//json数组转json串var arr = [1,2,3, { a : 1 } ];JSON.stringify( arr ); //json字符串转json数组var jsonStr = '[1,2,3,{"a":1}]';JSON.parse( js 阅读全文
posted @ 2019-11-15 12:20 newmiracle宇宙 阅读(3082) 评论(0) 推荐(0)
摘要: 下载微信小视频的方法 1 先装暴风影音2 登录pc微信 然后视频发给自己 然后直接点开就是暴风影音播放了 然后点击右键打开文件夹 就能找到这个视频了 阅读全文
posted @ 2019-11-15 12:20 newmiracle宇宙 阅读(497) 评论(0) 推荐(0)
摘要: linux grep的用法<pre>[root@iZ23uewresmZ ~]# cat /home/ceshis.txtb124230 b034325 a081016 m7187998 m7282064 a022021 a061048 m9324822 b103303 a013386 b04452 阅读全文
posted @ 2019-11-15 12:19 newmiracle宇宙 阅读(237) 评论(0) 推荐(0)
摘要: linux环境变量 bash_profile [root@iZ23uewresmZ ~]# vi /root/.bash_profile <pre># .bash_profile # Get the aliases and functions 如果有~/.bashrc这个文件 就运行他if [ -f 阅读全文
posted @ 2019-11-15 12:18 newmiracle宇宙 阅读(369) 评论(0) 推荐(0)
摘要: linux awk的用法 <pre>[root@iZ23uewresmZ ~]# cat /home/ceshis.txtb 12 42 30 b 03 43 25 a 08 10 16 m 71 87 998 m7282064 a022021 a061048 m9324822 b103303 a0 阅读全文
posted @ 2019-11-15 12:18 newmiracle宇宙 阅读(101) 评论(0) 推荐(0)
摘要: mysql 时间戳格式化函数from_unixtime使用说明<pre>mysql> select from_unixtime(1459338786); + +| from_unixtime(1459338786) |+ +| 2016-03-30 19:53:06 |+ +1 row in set 阅读全文
posted @ 2019-11-15 12:17 newmiracle宇宙 阅读(343) 评论(0) 推荐(0)
摘要: 修改mysql自增字段的方法 修改 test_user 库 user 表 auto_increment为 10000(从10000开始递增) <pre>mysql> alter table test_user.user auto_increment=10000;Query OK, 0 rows af 阅读全文
posted @ 2019-11-15 12:17 newmiracle宇宙 阅读(3088) 评论(0) 推荐(0)
摘要: PHP生成短链接方法方法一:新浪提供了长链接转为短链接的API,可以把长链接转为 t.cn/xxx 这种格式的短链接。 API: http://api.t.sina.com.cn/short_url/shorten.json (返回结果是JSON格式) http://api.t.sina.com.c 阅读全文
posted @ 2019-11-15 12:17 newmiracle宇宙 阅读(2876) 评论(0) 推荐(0)
上一页 1 ··· 60 61 62 63 64 65 66 67 68 ··· 98 下一页