码迷,mamicode.com
首页 >  
搜索关键字:you    ( 26666个结果
复习回顾一下前端的知识,以及犯过的写错误
绝对定位,三列的div,用float(浮动)来做是不行的,要用到绝对定位绝对定位:positi:absolute;贴紧左上边:position: absolute;left: 0;top: 0;贴紧右上边:position: absolute;right: 0;top: 0;left(左边距离)ri ...
分类:其他好文   时间:2020-05-11 22:08:21    阅读次数:90
Xor Sum题解>----(思维+递归)
Xor Sum AtCoder 2272 Time limit : 2sec / Memory limit : 256MB Score : 600 points Problem Statement You are given a positive integer N. Find the number ...
分类:其他好文   时间:2020-05-11 19:09:03    阅读次数:87
Cypress学习3-操作页面元素(Actions行为事件)
前言 ui自动化操作页面上的元素,常用的方法就那么几个,输入文本,点击元素,清空文本,点击按钮。 还有一些特殊的checkbox,radio,滚动条等。 .type() 往输入框输入文本元素 .focus() 要聚焦DOM元素,请使用.focus()命令 .blur() 判断输入框是必填项 .cle ...
分类:其他好文   时间:2020-05-11 18:58:43    阅读次数:78
解决使用DBeaver连接MySQL时保错-The server time zone value '?й???????' is unrecognized or represents more than one time zone.
解决使用DBeaver连接MySQL时保错,其实提示很明显。 The server time zone value '?й???????' is unrecognized or represents more than one time zone. You must configure either ...
分类:数据库   时间:2020-05-11 18:18:48    阅读次数:141
Java 后端导出Excel ,复杂表头
@RequestMapping(value = "/exportXls") public void exportXls(@RequestParam String zcq, HttpServletRequest request, HttpServletResponse response) { List ...
分类:编程语言   时间:2020-05-11 14:54:03    阅读次数:68
python 正则
Python提供了re模块来支持正则表达式相关操作,下面是re模块中的核心函数。 def main(): username = input('请输入用户名: ') qq = input('请输入QQ号: ') m1 = re.match(r'^[0-9a-zA-Z_]{6,20}$', userna ...
分类:编程语言   时间:2020-05-11 13:29:06    阅读次数:68
392. Is Subsequence
Given a string s and a string t, check if s is subsequence of t. You may assume that there is only lower case English letters in both s and t. t is po ...
分类:其他好文   时间:2020-05-11 13:14:30    阅读次数:81
找规律
题目 You are given a positive integer N(1≦N≦1e18). Find the number of the pairs of integers u and v(0≦u,v≦N) such that there exist two non-negative inte ...
分类:其他好文   时间:2020-05-11 13:07:17    阅读次数:68
简记python中str的一些小问题
str可以支持很多方法,也像一个list那样可以通过下标访问,但是要注意,python中的str是不可变的变量类型,也就是说很多看起来修改了字符串的操作只不过是又产生了一个副本罢了,如果不将这个副本使用,str变量本身不会有任何变化。 s = 'i am you' s.capitalize() pr ...
分类:编程语言   时间:2020-05-11 01:19:09    阅读次数:80
Vue-router基础知识
1. 响应路由参数的变化 定义一个路由如下: 12345678910111213141516 export default new Router({ mode: 'history', base: process.env.BASE_URL, routes: [ { path: '/', name: ' ...
分类:其他好文   时间:2020-05-11 01:10:19    阅读次数:65
26666条   上一页 1 ... 92 93 94 95 96 ... 2667 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!