JavaScript Reference/Javascript Properties/hspace

Материал из Web эксперт
Перейти к: навигация, поиск

"hspace" Example

   <source lang="javascript">
   

<html> <body> <script language="JavaScript"> function function1() {

   if (document.all.myButton.value == "Allow an hspace of 200px") {
       document.getElementById("myImg").hspace = 200;
       document.all.myButton.value = "Restore";
   } else {
       document.getElementById("myImg").hspace = 0;
       document.all.myButton.value = "Allow an hspace of 200px"; 
   }

} </script> <img id="myImg" src="yourimage.jpg" alt="" width="99" height="64"> <input id="myButton"

      type="button" 
      value="Allow an hspace of 200px" 
      onclick="function1();">

</body> </html>


     </source>
   
  


"hspace" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |<applet> <iframe> | | |<img> <input> | | |<input type="image"> <marquee> | | |<object> | +----------------+--------------------------------------------------------------+

     </source>
   
  


"hspace" Syntax and Note

   <source lang="javascript">

Note: Read and write property. Sets the space on the left and right sides of the element.

Syntax:

document.getElementById("elementID").hspace = value document.all.elementID.hspace = value // IE only


     </source>