1、select select { /*Chrome和Firefox里面的边框是不一样的,所以复写了一下*/ border: none; outline: none; background: none; /*很关键:将默认的select选择框样式清除*/ appearance: none; -moz ...
分类:
其他好文 时间:
2020-05-28 16:24:01
阅读次数:
249
1.Django默认支持sqlite数据库 DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } 若要建立MySQL数据 ...
分类:
其他好文 时间:
2020-05-27 12:16:42
阅读次数:
79
隐式等待 driver.implicitly_wait(10) 默认参数的单位为秒,本例中设置等待时长为10秒。当脚本执行到某个元素定位时,如果元素可以定位,则继续执行; 如果元素定位不到,则它将以轮询的方式(0.5s)不断地判断元素是否被定位到。假设在第6秒定位到了元素则继续执行,若直到超出设置时 ...
分类:
其他好文 时间:
2020-05-26 18:39:57
阅读次数:
76
unexpected indent 实在是无法忍受 Win键(就是windows图标那个键)+R 呼出CMD命令行工具(powershell也行): linux+mac一样呼出终端工具 在Pycharm的tools中添加autopep8 File Settings (快捷键Ctrl + Alt + ...
分类:
编程语言 时间:
2020-05-24 10:10:26
阅读次数:
73
先看效果图: 代码: 参考视频:https://www.bilibili.com/video/BV1nV411d7Q2 ...
分类:
Web程序 时间:
2020-05-24 09:22:19
阅读次数:
117
<insert id="insertCustomer2" parameterType="Customer"> /* order="AFTER"表示在下面的插入语句执行之后在执行 */ <selectKey keyColumn="cust_id" order="AFTER" keyProperty=" ...
分类:
其他好文 时间:
2020-05-23 20:38:04
阅读次数:
98
new 初始化:括号内加初始值 int *pi = new int (6) // C++98 struct where {double x; double y; double z}; where * one = new where {2.5, 5.3, 7.2}; // C++11 以下为定位 ne ...
分类:
编程语言 时间:
2020-05-22 21:30:15
阅读次数:
116
原文链接:Houdini: Maybe The Most Exciting Development In CSS You’ve Never Heard Of更多译文将陆续推出,欢迎点赞+收藏+关注我的专栏,未完待续…… 你是否曾经想要使用一些特别的CSS特性,却因为未曾得到所有浏览器的支持而选择放弃 ...
分类:
Web程序 时间:
2020-05-22 21:22:46
阅读次数:
76
在有很多的if-then-else语句的情况下,go语言可以写成: package main import ( "fmt" "time" ) func main() { t := time.Now() switch true{ case t.Hour() < 12: fmt.Println("Goo ...
分类:
其他好文 时间:
2020-05-22 17:22:15
阅读次数:
63
1.更新 同步方式: /** * 三个参数 * the path of the node * the data to set * the expected matching version */ Stat stat = zooKeeper.setData("/set/node1", "NODE1". ...
分类:
编程语言 时间:
2020-05-22 12:53:26
阅读次数:
93