My first interview

Last day,I received a call from Beijing when I was in a class.The call was from Innvotion works.I was surprised it was so quick.I just delievery my resume the day before yseterday.I did not hava a good prepare.

Here are some questions.

  • Web page error code
    • 200-Successful Client Requests
    • 300-Client Request Redirected
    • 400-Client Request Errors
    • 500-Server Errors
  • Elements
    • 对于行内元素
    • 设置宽度width 无效
    • 设置高度height无效,可以通过line-height来设置
    • 设置margin只有左右margin有效,上下无效
    • 设置padding只有左右padding有效,上下则无效。注意元素范围是增大了,但是对元素周围的内容是没影响的
  • Request
    • get 在使用 $_GET 变量时,所有的变量名和值都会显示在 URL 中。所以在发送密码或其他敏感信息时,不应该使用这个方法。不过,正因为变量显示在 URL中,因此可以在收藏夹中收藏该页面。在某些情况下,这是很有用的。
    • HTTP GET 方法不适合大型的变量值;值是不能超过 100 个字符的
    • post 通过 HTTP POST 发送的变量不会显示在 URL 中。变量没有长度限制。