Ein Bilddiagramm besteht Regionen oder Bereich, und jede Region oder Bereich hat einen verbundenen Hypertext-Link. Das Klicken auf einem Bereich nimmt dich zur verbundenen Verbindung.
Java Index Image Mapsn hinzuzuf�gen ist so einfach wie, ihn einem HREF hinzuf�gend. Tats�chlich tut Java Indexfestlichkeit-Bereich Umbauten fast genau wie es HREFs. Du kannst onMouseOvers, onClicks und onMouseOuts im Bereich Umbau haften, und sie tun, was du erwartest.
Es gibt zwei Arten Image Maps:
1 Clint Side image map
2 Server Side image map
Java Index st�tzt Klient seitliche Image Maps. Java Index liefert den Bereich Gegenstand, mit Hilfe dessen du mit Image Mapsn arbeiten kannst und was du auf diesem Bild tun m�chtest.
Properties of an area Object
Property
Description
href
It takes the name of the file that is linked to
the particular area on the image.
hash
It specifies the anchor name in the URL
host
It specifies the host name and the port of the
URL.
pathname
It either sets the path name of the URL or
returns the path portion of the URL.
port
This property specifies the port section of the
URL.
protocol
It specifies the protocol part of the URL, including the colon after the
protocol name.
search
It specifies the URL query string section,
including the question mark.
target
It specifies the target name for the URL link.
Verwenden der Klient-Seite Image Maps
Ein Klientseite Bilddiagramm wird mit dem DIAGRAMM-Umbau definiert. Wir k�nnen Bereiche innerhalb des Bildes definieren, die Hypertext-Links zu eindeutigem URLs sind; die Bereiche k�nnen Vierecke, Kreise oder Polygone sein.
Traditionsgem�� werden imagemapantr�ge zu den Bedienern geschickt, und ein cgi Programm f�hrt eine Datenbanknachschlagenfunktion durch. Mit Klientseite Java Index jedoch kannst du das Nachschlagen auf dem Klienten durchf�hren. Du kannst die Sucheigenschaft des Position Gegenstandes benutzen, um die x und y Koordinaten zu analysieren und eine T�tigkeit dementsprechend durchzuf�hren. Z.B. annehmen, da� du eine Akte hast, die image.html mit dem folgenden Inhalt genannt wird:
Example:2
<H1>Click on the image </H1> //Mouse event
<P>
<A HREF="image.html"><IMG SRC="about:logo" BORDER=0 ISMAP></A>
<SCRIPT>
str = location.search
if (str == "")
document.write("<P>No coordinates specified.")
else
{
commaloc = str.indexOf(",") // the location of the comma
document.write("P>The x value is " + str.substring(1, commaloc))
document.write("<P>The y value is " +
str.substring(commaloc+1, str.length))
}
</script>
Keywords:JavaScript Image Maps Creating HTML Image Maps Image Maps and JavaScript