Area.host : Area « HTML Tags « JavaScript Tutorial






Syntax

document.links[num].host

The host property contains the hostname and port that is specified in the URL and separated with a colon (:). This property is a read/write string.

<html>
    <body>
    <form name="question">
    <input name="site"
           type="radio"
           checked
           onClick="updateLinks('US')">US<br>
    <input name="site"
           type="radio"
           onClick="updateLinks('EUROPE')">Europe
    </form>
    <MAP name="java2sMap">
      <area name="car1"
            coords="1,1,48,48"
            href="http://www.java2s.com"
            target="_top">
      <area name="car2"
            coords="51,1,99,49"
            href="http://www.java2s.com"
            target="_top">
    </map>
    <img src="http://www.java2s.com/style/logo.png" align="top" height="50"   width="100" usemap="#java2sMap">
    <hr>
    <script language="JavaScript">
    <!--
    function updateLinks(site)
    {
      if(site=="US") {
        document.links[0].host="www.java2s.com";
        document.links[1].host=document.links[0].host;
      }
      if(site=="EUROPE") {
        document.links[0].host="www.java2s.com:7412";
        document.links[1].host=document.links[0].host;
      }
    }
    -->
    </script>
    </body>
    </html>








21.4.Area
21.4.1.Area
21.4.2.Area.handleEvent()
21.4.3.Area.host
21.4.4.Area.hostname
21.4.5.Area.href
21.4.6.Area.onDblClick
21.4.7.Area.onMouseOut
21.4.8.Area.onMouseOver
21.4.9.Area.pathname
21.4.10.Area.port
21.4.11.Area.protocol
21.4.12.Area.search
21.4.13.Area.target