js 修改边框颜色

js 修改边框颜色,第1张

不要混合html属性和css属性(测试发现似乎只有IE会这样)。

在table里添加属性style="border-color:#00F",然后去掉bordercolor属性:

<script type="text/javascript">

function borderit(which){

//if IE 4+ or NS 6+

if (document.all||document.getElementById){

which.style.borderColor="FF0000"

}

}

</script>

</head>

<table border="3" onmousemove="borderit(this)" style="border-color:#00F" cellpadding="0" cellspacing="0">

<tr><td>2345345345</td></tr>

</table>

<input type="text" id="txt" />

<script>

document.getElementById("txt").style.borderStyle="solid"//边框样式

document.getElementById("txt").style.borderColor="#ff0000"//边框颜色

document.getElementById("txt").style.borderWidth="1px"//边框宽度

</script>


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存