招聘时测试 HTML/CSS/Javascript 技能

2023-09-07前端开发问题
4

本文介绍了招聘时测试 HTML/CSS/Javascript 技能的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

在招聘前端开发人员时,您应该测试哪些特定技能和实践?评估他们在 HTML、CSS 和 Javascript 方面的技能的好指标是什么?

显然,无表语义 HTML 和纯 CSS 布局可能是关键技能.但是具体的技术呢?他/她应该能够毫不费力地模拟多列布局吗?CSS精灵?等高(或人造)列?HTML 标签的选择是否重要(即过于依赖 <div>)?他们应该能够(用文字)解释花车是如何工作的吗?

那么 JavaScript 技能呢?框架经验(jQuery、Prototype 等)有多重要.今天?

显然,职位的详细信息和他们将从事的工作的网站最能说明需要哪些技能.但我想知道在为候选人创建测试时,人们可能会认为哪些特定技能会破坏交易(或制造商).

解决方案

当我面试客户端开发人员职位的人时,我试图弄清楚:

<上一页>1) 了解 DOM(那是什么,它与 HTML 有什么关系等)2) 理解 XML/命名空间3) 理解 JavaScript(面向对象?否则如何)4) 了解组件化方法(XBL、HTC) - 加5)理解OO原理6) JavaScript 闭包7) 浏览器内存泄漏

我马上给出的唯一一个简单的测试用例:

<上一页><脚本类型="文本/javascript">变量 a = 1;</脚本>

我建议受访者用技术术语解释那句话.

我还检查了对 Web 技术当前状态的总体认识,除其他问题外,我建议设计一个 Web 浏览器,建议受访者选择他将投入到他的全新生物中的技术,提出可能当前客户端平台中缺少.

When hiring a front-end developer, what specific skills and practices should you test for? What is a good metric for evaluating their skill in HTML, CSS and Javascript?

Obviously, table-less semantic HTML and pure CSS layout are probably the key skills. But what about specific techniques? Should he/she be able to effortlessly mock up a multi-column layout? CSS sprites? Equal height (or faux) columns? Does HTML tag choice matter (ie, relying too heavily on <div>)? Should they be able to explain (in words) how floats work?

And what about javascript skills? How important is framework experience (jQuery, Prototype, etc). today?

Obviously, the details of the position and the sites they'll be working on are the best indication of what skills are needed. But I'm wondering what specific skills people might consider to be deal-breakers (or makers) when creating tests for candidates.

解决方案

When I interview people for a position of Client-Side developer I try to figure out:

1) Understanding DOM (what is that, how is it related to HTML etc)
2) Understanding XML/namespaces
3) Understanding JavaScript (object-oriented? what otherwise)
4) Knowing approaches to componentization (XBL, HTC) - plus
5) Understanding OO principles
6) JavaScript closures
7) Memory leaks in browsers

The only simple test case I give right away:

<script type="text/javascript">
var a = 1;
</script>

I suggest interviewee to explain in technical terms that line.

And I also check on overall awareness of the current state of the Web technologies, among other questions I suggest designing a web-browser where interviewee is suggested to pick technologies he would put into his brand-new creature, suggest ones that might be missing from the current client-side platform.

这篇关于招聘时测试 HTML/CSS/Javascript 技能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

js删除数组中指定元素的5种方法
在JavaScript中,我们有多种方法可以删除数组中的指定元素。以下给出了5种常见的方法并提供了相应的代码示例: 1.使用splice()方法: let array = [0, 1, 2, 3, 4, 5];let index = array.indexOf(2);if (index -1) { array.splice(index, 1);}// array = [0,...
2024-11-22 前端开发问题
182

layui 实现实时刷新一个外部的div
主页面上显示了一个合计,在删除和增加的时候需要更改这个总套数的值: //html代码div class="layui-inline layui-show-xs-block" style="margin-left: 10px" id="sumDiv"spanSOP合计:/spanspan${totalNum}/spanspan套/span/div 于是在我们删除这个条数据后,...
2024-11-14 前端开发问题
156

layui 单选框、复选框、下拉菜单不显示问题如何解决?
1. 如果是ajax嵌套了 页面, 请确保 只有最外层的页面引入了layui.css 和 layui.js ,内层页面 切记不要再次引入 2. 具体代码如下 layui.use(['form', 'upload'], function(){ var form = layui.form; form.render(); // 加入这一句});...
2024-11-09 前端开发问题
313

layui要如何改变时间日历布局大小?
问题描述 我想改变layui时间日历布局大小,这个要怎么操作呢? 解决办法 可以用css样式对时间日历进行重新布局,具体代码如下: !DOCTYPE htmlhtmlheadmeta charset="UTF-8"title/titlelink rel="stylesheet" href="../../layui/css/layui.css" /style#test-...
2024-10-24 前端开发问题
271

JavaScript小数运算出现多位的解决办法
在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会...
2024-10-18 前端开发问题
301

jQuery怎么动态向页面添加代码?
append() 方法在被选元素的结尾(仍然在内部)插入指定内容。 语法: $(selector).append( content ) var creatPrintList = function(data){ var innerHtml = ""; for(var i =0;i data.length;i++){ innerHtml +="li class='contentLi'"; innerHtml +="a href...
2024-10-18 前端开发问题
125