HTML/CSS/Images/ismap — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:16, 26 мая 2010
"ismap": Whether the image in "img" element is a server-side image map
<HTML>
<head>
<Title>Example For</Title>
<script language="JavaScript">
function function1() {
var x = document.getElementById("myImage").isMap;
if (x == true) {
alert("Yes");
}
}
</script>
</head>
<body>
<img id="myImage"
src="http://www.wbex.ru/style/logo.png"
width=300
height=100
usemap="#myMap"
ismap="false">
<map name="myMap">
<area shape="rect" coords="0, 0, 100, 50" href=http://www.wbex.ru>
<area shape="rect" coords="200, 50, 300, 100" href="http://www.google.ru">
</map>
<input type="button" value="Is this image a server-side map?" onClick="function1()">
</body>
<BODY>
</BODY>
</HTML>