HTML DOM border 屬性

定義和用法:javascript

    border 屬性在一個聲明中設置全部邊框屬性。css

語法:html

    Object.style.border=borderWidth borderStyle borderColorjava

 

實例:ide

本例改變元素的邊框:spa

  
  
  
  
  1. <html> 
  2. <head> 
  3.     <style type="text/css"> 
  4.         p { 
  5.             border:thin double red; 
  6.         }            
  7.     </style> 
  8.     <script type="text/javascript"> 
  9.         function changeBorder(){ 
  10.             document.getElementById("p1").style.border="thick dotted green"
  11.         } 
  12.     </script> 
  13. </head> 
  14. <body> 
  15.     <input type="button" onclick="changeBorder()" value="Change border" /> 
  16.     <p id="p1">This is a paragraph</p> 
  17. </body> 
  18. </html>
相關文章
相關標籤/搜索