码迷,mamicode.com
首页 >  
搜索关键字:clear    ( 6379个结果
linux
查看当前目录下的所以文件及目录ls ll ls -l cd 查看当前目录pwd ctrl+C结束进程 ctrl+Z将程序在后台运行 新建目录mkdir dir1 删除目录rm -rf dir 递归创建目录mkdir -p /dir1/dir2/dir3 clear 查看ip信息:ifconfig s ...
分类:系统相关   时间:2020-06-13 00:54:09    阅读次数:111
scrapy安装及入门使用
scrapy安装及入门使用 安装 pip3.7 install Scrapy 输入scrapy命令查看是否安装成功 J-pro:myproject will$ scrapy Scrapy 2.1.0 - project: myproject Usage: scrapy <command> [opti ...
分类:其他好文   时间:2020-06-13 00:47:56    阅读次数:60
Cypress系列(20)- 可操作类型的命令 之 clear()
如果想从头学起Cypress,可以看下面的系列文章哦 https://www.cnblogs.com/poloyy/category/1768839.html 作用 一看就知道是清空输入框的所有内容 有趣的是, .clear() 等价于 .type("{selectall}{backspace}") ...
分类:其他好文   时间:2020-06-12 20:06:44    阅读次数:75
前后端分离开发vue+Elementyui+abpcorewebapi商城管理系统(五)后台主页面
后台主页面代码 <template> <el-container style="height:100vh"> <el-header> <div> <img src="../assets/logo.png" alt /> <span>Vue商城后台管理系统</span> </div> <el-butt ...
分类:Windows程序   时间:2020-06-12 14:54:21    阅读次数:115
电脑查看wifi密码,命令
1、按Win+R,输入cmd,确定进入dos命令窗口; 2、输入命令: netsh wlan show profiles 回车;(目的:查看连过的wifi名字) 3、输入命令: netsh wlan show profiles "需要查看的wifi的名字" key=clear 回车,查看安全设置中的 ...
分类:其他好文   时间:2020-06-12 01:02:39    阅读次数:94
mariadb修改初始密码
1、进到数据库进行操作[root@localhostetc]#mysqlWelcometotheMariaDBmonitor.Commandsendwith;or\g.YourMariaDBconnectionidis7Serverversion:5.5.41-MariaDBMariaDBServerCopyright(c)2000,2014,Oracle,MariaDBCorporationAb
分类:数据库   时间:2020-06-11 18:12:20    阅读次数:175
OOALV 简单使用
report zjty_demo_08. tables: zjty_eng. type-pools: icon, slis. class zcl_alv_grid definition deferred. data: ok_code type sy-ucomm, begin of gs_englis ...
分类:其他好文   时间:2020-06-11 16:49:14    阅读次数:98
Codeforces Round #647 (Div. 2) F. Johnny and Megan's Necklace
题意: 给你 \(n\) 条链,第 \(i\) 条链两端代表的点是 $2i-1$ 和 $2i$ ,共计 $2n$ 个点都有权值,现在要把这些链组成一个环,两条链之间的连接值就是相连的两个节点的权值异或结果的lowbit的基于2的对数,即 \(val=log(lowbit(a异或b));\) 如果权值 ...
分类:其他好文   时间:2020-06-11 13:44:05    阅读次数:60
GitLab Admin Area 500 Error
GitLab Admin Area 500 Error GitLab Admin Area Settings 菜单全部报错 500 解决方法 执行: gitlab-rake cache:clear # 打开控制台 gitlab-rails console # 重新生成 Git Runner toke ...
分类:其他好文   时间:2020-06-11 10:28:07    阅读次数:54
DOM清空元素内容的方法
function clear(elem) { while (elem.firstChild) { elem.firstChild.remove(); } } function clear(elem) { elem.innerHTML = ''; } 注意错误做法: function clear(el ...
分类:其他好文   时间:2020-06-10 19:34:38    阅读次数:239
6379条   上一页 1 ... 26 27 28 29 30 ... 638 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!