Home>Article>Web Front-end> Summary of basic operations of jscss

Summary of basic operations of jscss

php中世界最好的语言
php中世界最好的语言 Original
2018-06-04 10:07:12 1792browse

这次给大家带来jscss基础操作总结,jscss基础操作的注意事项有哪些,下面就是实战案例,一起来看一下。

返回上一页:

 

点击回到顶部

document.body.scrollTop = 0 document.documentElement.scrollTop = 0

css中超出变为省略号:

微软雅黑的写法:
1)、“微软雅黑” 转换Unicode编码“\5FAE\8F6F\96C5\9ED1”

div{font-family:”\5FAE\8F6F\96C5\9ED1”}


div内css字体一样是设置为“微软雅黑”
2)、“微软雅黑”使用英文“Microsoft YaHei”

div{font-family:”Microsoft YaHei”}

es6中 数组去重

this.newarr = Array.from(new Set(this.arr))

Object.keys(obj) ----- 将对象排序输出
obj 要返回其枚举自身属性的对象。--- 要排序的对象
eg:

var anObj = { 100: 'a', 2: 'b', 7: 'c' }; console.log(Object.keys(anObj)); // console: ['2', '7', '100']

相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!

推荐阅读:

使用JS实做出加密解密操作

怎样利用JS做出引用传递与值传递

The above is the detailed content of Summary of basic operations of jscss. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn