利用JS设置元素style属性:最小高度隐藏

利用JS设置元素style属性:最小高度隐藏,第1张

最小高度:Object.style.minHeight=length

隐藏元素:Object.style.display=none

其他属性参考: http://www.w3school.com.cn/jsref/dom_obj_style.asp

<!doctype html>

<html>

<head>

<meta charset="UTF-8">

<meta name="Generator" content="EditPlus®">

<meta name="Author" content="">

<meta name="Keywords" content="">

<meta name="Description" content="">

<title>Document</title>

</head>

<body>

<div id = "box"></div>

</body>

<script type="text/javascript">

var box = document.getElementById("box")

box.style.width='100px'

box.style.height='200px'

box.style.backgroundColor='red'

</script>

</html>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11065143.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-13
下一篇 2023-05-13

发表评论

登录后才能评论

评论列表(0条)

保存