<html>
<head>
<style type="text/css">
div.one{border:1px solid #000000; background:#fff;}
</style>
<script type="text/javascript">
function removes()
{
divs = document.getElementsByTagName("div");
alert(""+divs.length+"");
for (i = 0; i < divs.length ; i++)
{
remove(divs[i]);
}
}
function remove(obj)
{
想把3个div框的边框去掉,宽度变为0px,代码如何写?obj.style.border=0px;是不行的
}
</script>
</head>
<body>
<div class="one" id=dragdiv1>
<textarea id=1 >1</textarea>
</div>
<div class="one" id=dragdiv2>
<textarea id=2 >2</textarea>
</div>
<div class="one" id=dragdiv3>
<textarea id=1 >3</textarea></div>
<button onclick=removes()>去div边框</button>
</body>
</html>
想把3个div框的边框去掉,宽度变为0px,remove()的代码如何写?removes()这段测试过,是正确的。
相关分类