在CSS中设置display:none的值与直接在html中设置display:none的值不同吗?

时间:2019-03-04 15:48:53

标签: javascript html css

关于显示属性:


#aboutme {
    display:none;
}

window.onload = function(){
   var about2 = document.getElementById("about");
   about2.addEventListener("click",about);
}
function about(){
var divabout = document.getElementById("aboutme");

 console.log(divabout.style.display);
}
  • 当我在html标签中直接设置display:none时 我console.log = none

  • 的结果
  • 当我在CSS中设置display:none时 我console.log =“”的结果-这意味着:什么都没有?

每个人都请为我解释一下。非常感谢

0 个答案:

没有答案