摘要:
title: Hello World Welcome to "Hexo" ! This is your very first post. Check "documentation" for more info. If you get any problems when using Hexo, you 阅读全文
摘要:
一级标题 二级标题 三级标题 无序列表 1 2 3 有序列表 1. 1 2. 2 3. 3 这里引用 asdf asdf asf asdf s asdf 要注意符号与文本的空格 插入链接 "百度" 插入图片 粗体 斜体 表格 | Tables | Are | Cool | | |: :| :| | 阅读全文
摘要:
function jone(name,age,work){ this.name=name; this.age=age; this.work=work; this.say=function(msg){ alert(msg+",我叫"+this.name+",我今年"+this.age+"岁,我是"+t 阅读全文
摘要:
计算文件所占空间时,可以用如下公式: 簇数=取整(文件大小/簇大小)+1 所占空间=簇数×磁盘簇大小 阅读全文
摘要:
一:配置环境 1、下载SWI-Prolog或GNU Prolog 二:基本用法 说明:每个prolog语句都应该是以.结束 1、输出,(注意:prolog字符串要包在单引号里) ?- writeln('hello world'). 2、退出prolog ?- halt. 3、加载程序 ?- cons 阅读全文
摘要:
overflow: hidden; /*超出隐藏*/ text-overflow: ellipsis;/*文字隐藏后添加省略号*/ white-space: nowrap;/*强制不换行*/ 阅读全文
摘要:
语法: map() 方法返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值。 map() 方法按照原始数组元素顺序依次处理元素。 注意: map() 不会对空数组进行检测。 注意: map() 不会改变原始数组。 阅读全文
摘要:
git图形客户端:SourceTree bash: 先初始化: 添加远程仓库: 阅读全文
摘要:
gulp基于node 1、全局安装gulp: 2、前往项目目录,然后安装作为项目的开发依赖(devDependencies): 3. 在项目根目录下创建一个名为 gulpfile.js 的文件: 4、运行gulp: 默认运行名为 default 的任务(task),在这里,这个任务打印"hello 阅读全文