摘要:
<srcipt> </srcipt> don't empty normal write <srcipt> export default {}; </script> 阅读全文
摘要:
nnoremap <Space>n :NERDTreeToggle<CR> 阅读全文
摘要:
在CSS中导入字体或是字体ICON @font-face{ src: url("具体的字体地址"), url("具体的字体地址"); } 阅读全文
摘要:
span[class='test'] =>匹配所有带有class类名test的span标签 span[class *='test'] =>匹配所有包含了test字符串的class类名的span标签 span[class] =>匹配所有带有class属性的span标签 [class='all'] => 阅读全文
摘要:
~ 打法: FN+shift+Esc / ? Alt Files Ctral <=> 上 下 左 右 打法:FN+shift 切换 解锁键盘 打法:FN+win 蓝牙连接 打法:FN+P 阅读全文
摘要:
先到出 U盘的位置, 方法有很多,terminal 用root权限,采用fdisk -f 命令 unmount /dev/sdb -I //U盘拨出 sdb为U盘挂载的位置 mkfs.fat /dev/sdb -I //用于格式化U盘为fat格式 dd if=ubuntu-16.0.3-deskto 阅读全文
摘要:
<!DOCTYPE html><html><head><style>:target{border: 2px solid #D4D4D4;background-color: #e5eecc;}</style></head><body> <h1>这是标题</h1> <p><a href="#news1" 阅读全文
摘要:
<srcipty> var t = 10; function openwin(){ t -= 1; if( t==0){ location.href='prototype.html'; } setTimeout("openwin()",1000); } openwin(); </script> 阅读全文
摘要:
其实原理很简单,兴个粟子, 点击按钮出现 dialog 弹出杠, 将dialog做成一个组件,components/dialog.vue 就是在components里面新建一个vue.将这个vue做为dialog的组件包容器, 哪里需要用到直接采用 @import "./components/dia 阅读全文
摘要:
<html> <body> <b>This text is bold</b> <br /> <strong>This text is strong</strong> <br /> <big>This text is big</big> <br /> <em>This text is emphasiz 阅读全文