上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页
摘要: 转自:https://www.cnblogs.com/qwj-sysu/p/5400705.html 阅读全文
posted @ 2020-09-05 16:44 Fmaj-7 阅读(452) 评论(0) 推荐(0)
摘要: $('.id').siblings() 当前元素所有的兄弟节点$('.id').prev() 当前元素前一个兄弟节点$('.id').prevaAll() 当前元素之前所有的兄弟节点$('.id').next() 当前元素之后第一个兄弟节点$('.id').nextAll() 当前元素之后所有的兄弟 阅读全文
posted @ 2020-09-01 09:30 Fmaj-7 阅读(305) 评论(0) 推荐(0)
摘要: 1、事务开启提交: begin; insert into table values(1, 'one', 'two'); commit; 2、事务开启回滚: begin; insert into table values(1, 'one', 'two'); rollback; 3、事务保存点: beg 阅读全文
posted @ 2020-08-31 23:18 Fmaj-7 阅读(91) 评论(0) 推荐(0)
摘要: redis命令官方地址:http://doc.redisfans.com/ 阅读全文
posted @ 2020-08-31 14:35 Fmaj-7 阅读(122) 评论(0) 推荐(0)
摘要: var total = parseInt(count)*parseFloat(price);//保留两位小数total.Fixed(2) 阅读全文
posted @ 2020-08-31 10:16 Fmaj-7 阅读(450) 评论(0) 推荐(0)
摘要: windows 链接:https://pan.baidu.com/s/1Sv3InojQjlK5FfmbTEVvzQ 提取码:914o 解压到site-packages 安装: pip install mutagen pip install request 安装后出现问题见:https://www. 阅读全文
posted @ 2020-08-29 10:37 Fmaj-7 阅读(423) 评论(0) 推荐(0)
摘要: traceroute -T -nn 192.168.110.128 -p 623 阅读全文
posted @ 2020-08-25 11:39 Fmaj-7 阅读(207) 评论(0) 推荐(0)
摘要: rpm -Uvh https://repo.zabbix.com/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm yum clean all yum install zabbix-agent 阅读全文
posted @ 2020-08-24 11:49 Fmaj-7 阅读(116) 评论(0) 推荐(0)
摘要: from collections import OrderedDict od = {'c': 1, 'a': 3, 'b': 5} for key, val in od.items(): print(key, val) is_od = {} OrderedDict(is_od) is_od['c'] 阅读全文
posted @ 2020-08-18 09:39 Fmaj-7 阅读(118) 评论(0) 推荐(0)
摘要: pip install setuptools-scm 转自:https://www.cnblogs.com/ruhai/p/11166876.html 阅读全文
posted @ 2020-08-17 16:03 Fmaj-7 阅读(88) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页