本文實例講述了JS設定網頁圖片vspace和hspace屬性的方法。分享給大家供大家參考。具體分析如下:
hspace可以以像素為單位,指定影像左邊和右邊的文字與影像之間的間距;vspace 值則是上面的下面的文字與影像之間的距離的像素數
<!DOCTYPE html> <html> <head> <script> function setSpace() { document.getElementById("compman").hspace="50"; document.getElementById("compman").vspace="50"; } </script> </head> <body> <img id="compman" src="compman.gif" alt="Computerman" width="107" height="98"> <p>Some text. Some text. Some text. Some text.</p> <input type="button" onclick="setSpace()" value="Set hspace and vspace"> </body> </html>
希望本文所述對大家的javascript程式設計有所幫助。