问答详情
源自:9-6 setAttribute()方法

setAttribute的用法

谁能说一下    Lists[i].setAttribute("title","WEB前端技术")和 Lists[i].title="WEB前端技术"的区别?

提问者:萨琪玛 2016-11-03 17:21

个回答

  • stone310
    2016-11-04 08:21:24

    这里两者没区别,区别有以下

    1、通过setAttribute设置的自定义属性,例如:Lists[i].setAttribute("abc","hello"),会显示在样式上,而直接=号设置不会显示在样式上 ;

    2、xxx.className="xyz"这么写可以,但是xxx.setAttribute("className","xyz")则是无效的,要写成xxx.setAttribute("class","xyz");

    3、setAttribute不支持IE8以下