HTML DOM border ÊôÐÔ
¶¨ÒåºÍÓ÷¨
border ÊôÐÔ¿ÉÉèÖûò·µ»ØÍ¼ÏñÖÜΧµÄ±ß¿ò¿í¶È¡£
Óï·¨
imageObject.border=pixels
ʵÀý
ÏÂÃæµÄÀý×ӿɸü¸ÄͼÏñµÄ±ß¿ò¿í¶È£º
<<html>
<head>
<script type="text/javascript">
function changeBorder()
{
document.getElementById("compman").border="3"
}
</script>
</head>
<body>
<img id="compman" src="compman.gif" alt="Computerman" />
<br /><br />
<input type="button" onclick="changeBorder()"
value="Change border" />
</body>
</html>