最初のボタンと同じことをしなければならないボタンの列がありますが、独自の個々の写真があります。エラーが発生しないように ID を設定するにはどうすればよいですか? 現在、3 つのボタンを設定していますが、どういうわけか同じ名前がコピーされています (すべてモバイル クイック ウォッシュと表示されています)。これが私がこれまでに持っているものですhttp://ultimatefinishdetailing.com/Services.html
HTML: (画像ボタンの前に HTML を投稿)
<STYLE MEDIA="screen" TYPE="text/css">
.pop-up {
height: 100px;
width: 100px;
margin-right: -100px;
margin-top: -100px;
position:absolute;
right:-50px;
top:75px;
}
.button {
width:300px;
height:21px;
display:block; background-image:url(images/button_ufad4.jpg);
position:absolute;
}
</style>
<a href="" class="button" onmouseover="javascript:ShowImage('images/InteriorandExteriorDetailing.jpg')" onmouseout="javascript:HideImage()"></a>
<div id="popup" class="pop-up">
<img id="popupImage" alt="" />
</div>
Javascript:
<script type="text/javascript">
function ShowImage(src)
{
var img = document.getElementById('popupImage');
var div = document.getElementById('popup');
img.src = src;
div.style.display = "block";
}
function HideImage()
{
document.getElementById('popup').style.display = "none";
}
</script>