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>