Do web front-end interviews have to go through? If you have no experience, the company will train you. When you are trained, you don't have to stay in this company, just train you.
Does the front-end interview have to have works? You'd better have it, so the interview is easy to succeed.
If not, emphasize the attitude of learning and the seriousness of work.
As for web front-end interview refactoring, that is, code reuse, some common and universal methods are extracted and packaged into js plug-ins.
The works that front-end development needs to bring to the primary front-end interview are nothing more than interface settings. According to the needs of customers, the characteristics of products or the needs of projects, javascript script effects and CSS style sheets are used to make the client page more forward-looking and attract many people's attention. This is why front-end development is needed. Specific works can refer to other stations, but it is not necessary to copy them all. You can learn from it if you think it's appropriate. Too many things will affect the effect. Including forum, article page display, navigation, header and footer. There are many formats for navigation. You can choose the one that looks good. For example, space is the front page, which is well used and can be used for reference.
How long does the web front-end interview take? Come on, sometimes the interviewer feels interested in you when chatting with you. Let's talk for a while. Some even let you do problems on the computer. If the conversation feels that you are not suitable. It will be over soon.
Web front-end interview experience summary can usually sum up some important knowledge points, which are often used in daily development and will inevitably be asked during the interview. For example, several knowledge points of HTML are for reference only.
1. Web page structure
Web page structure generally contains document declaration DOCTYPE, and the elements in the header should contain coding format, keywords and web page description information.
2. Self-closing element
& ltbr & gt,< embed & gt, & lthr & gt, & ltimg & gt,< input & gt, & ltlink & gt, & ltmeta & gt, & ltparam & gt, & ltsource & gt, & ltwbr & gt.
3. Layout of the two most commonly used elements
(1)div: flow layout usage;
(2) Span: the use of text blocks.
What if the web front-end interview doesn't work? If the web front-end interview fails, you can sum up your experience and see if he asked you any questions in the interview and what are your weaknesses.
Do you need to bring your job to the front of the interview? It is recommended to provide the online address directly.
The average interviewer may not read your work. If there is an online link in your resume, the interviewer may click on it.
What is css hack? Generally speaking, it is to write different CSS for different browsers, that is, CSS Hack
IE browser hackers are generally divided into three types: conditional hackers, attribute hackers and selector hackers (see CSS file for details). For example:
1, conditional crack
& lt! -[if IE]& gt;
& ltstyle & gt
. Test {color: red; }
& lt/style & gt;
& lt! [endif]-& gt;
2. Attribute cracking
. Test {
Color: # 090 \ 9; /For IE8+/
Color: # f00/ For IE7 and earlier versions/
_ color:# ff0; /For IE6 and earlier versions */
}
3. Selector hacker
. Test {color:# 090;; }/For IE6 and earlier versions/
. Test {color:# ff0;; }/For IE7/
6. Briefly describe the difference between synchronization and asynchronism.
Synchronous mode is blocking mode and asynchronous mode is non-blocking mode.
Synchronization means that when a program executes a request, if the request takes some time to return information, the program will wait until it receives the returned information.
Asynchronous means that the program does not need to wait all the time, but continues to perform the following operations, regardless of the state of other programs. When a message returns, the system will inform the program to handle it, which can improve the efficiency of execution.