• html 元素有哪些(包括 H5)

       块级元素:
       head
       meat 
       title
       style
       body
       header
       section
       fotter  
       article
       aside
       nav
       menu
       address
       caption
       div
       dd
       dt
       dl
       form
       h1 ~ h6
       hr
       table
       li
       ui
       ol
       td 
       th
       tr
     
       行内元素
       a
       abbr
       b
       br
       code
       em
       i
       img
       span
       input
       textarea
       等等.........
    
    

  • css3 有哪些新增的特性

    • 边框
      border-radius
      box-shadow
      border-image
    • 背景
      background-size
      background_origin
      background-clip
    • 渐变
      linear-gradient
      radial-gradient
    • 文本效果
      word-break
      word-wrap
      text-overflow
      text-shadow
      text-wrap
      text-outline
      text-justify
    • 转换
      transform
      transform-origin
      translate(x,y)
      translateX(n)
      translateY(n)
      rotate(angle)
      scale(n)
      scaleX(n)
      scaleY(n)
      rotate(angle)
      transition
      animation

  • 写一个方法去掉字符串中的空格

    此处最好最方便的方法便是正则表达式了

       var trim = function(str){
           return str.replace(/\s*/g,"");
       }
       
       str.replace(/\s*/g,""); //去除字符串内所有的空格
       str.replace(/^\s*|\s*$/g,""); //去除字符串内两头的空格
       str.replace(/^\s*/,""); //去除字符串内左侧的空格
       str.replace(/(\s*$)/g,""); //去除字符串内右侧的空格
    

面试题摘自 Github


Evil
376 声望1 粉丝

不是修电脑的!电脑卡怎么办?买新的!!买贵的!!!