display在JS中不是显示隐藏的意思吗?跟这节讲的有什么关联?JS 中语法:object.style.display="block/none"
What is the connection between a{display:block;} and display in JS? -PHP Chinese website Q&A-What is the connection between a{display:block;} and display in JS? -PHP Chinese website Q&A
Let’s take a look and learn.
display就是设置显示方式,其值可以为
display:static默认
display:none 隐藏
display:block 块级元素
display:inline 内联元素
display:inline-block 内联块级元素
display:table-cell让标签元素以表格单元格的形式呈现,类似于td标签
所以这只是display所选取的值不同, 其效果也会有所不同而已。
What is the connection between a{display:block;} and display in JS? -PHP Chinese website Q&A-What is the connection between a{display:block;} and display in JS? -PHP Chinese website Q&A
Let’s take a look and learn.
display就是设置显示方式,其值可以为
display:static默认
display:none 隐藏
display:block 块级元素
display:inline 内联元素
display:inline-block 内联块级元素
display:table-cell让标签元素以表格单元格的形式呈现,类似于td标签
所以这只是display所选取的值不同, 其效果也会有所不同而已。