2019校园招聘前端开发工程师笔试题
时长:120分钟 总分:100分
128浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 | 填空题 | 简答题 |
---|---|---|---|---|
数量 | 10 | 5 | 1 | 2 |
浏览器渲染流程,以下哪个顺序是正确的? 1构建r...
浏览器渲染流程,以下哪个顺序是正确的?
1构建render树 2绘制render树 3布局render树 4解析HTML并构建DOM树
文本「Hello, world.」显示的颜色是?
<style> #content .text {text-color:red} #content>.title {color:green} #content div.title {font-color:blue} strong {font-color:yellow} * {color:black} </style> <div id="content"> <span class="text"><strong class="title">Hello, world.</strong></span> </div>
以下代码,正确的运行结果是?  var x = 5...
var x = 5
console.log(x++ + ++x)
console.log(++x * --x)
console.log(x)