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
先看效果图: 代码: 参考视频: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
<aop:config> <aop:pointcut id="xmllog" expression="execution(* com.xhu.service.MyService.*(..))"/> <aop:pointcut id="xmlafter" expression="execution(* ...
分类:
编程语言 时间:
2020-05-21 23:43:02
阅读次数:
92
<meta http-equiv="Cache-Control" content="no-store" /> 一、meta标签 meta是html语言head区的一个辅助性标签。也许你认为这些代码可有可无。其实如果你能够用好meta标签,会给你带来意想不到的效果,meta标签的作用有:搜索引擎优化( ...
分类:
Web程序 时间:
2020-05-20 12:45:44
阅读次数:
69
背景 执行代码报错 解决方法 该问题并不常见,主要是手机操作系统的问题 程序无法无法自动打开appiumsettings,那么我们可以手动打开appiumsettings服务(程序没有界面,会出现打开就闪退的错觉,这是正常现象) 然后再运行脚本 如果觉得此方法麻烦,那就只能更新系统或者更换手机解决了 ...
分类:
移动开发 时间:
2020-05-20 12:44:51
阅读次数:
176