私は問題を抱えています 私の領域の形状 href="/kosmetikstudios/deutschland/ Bayern " タグはそう見えます。そして、パラメーター「Bayern」を使用します (これは URL の最後のパラメーターです)。
このダイナミクスが必要です。
ここに私のJavascriptコードがあります:
<script type="text/javascript">
$(document).ready(function(){
var mName="passiv";
$("#map area").mouseenter(function(){
mName = $(this).attr("href"); // i don't have idea to implement this
bName="images/" +mName + ".png";
$("#map img").attr("src",bName);
});
$("#map area").mouseleave(function(){
bName="images/Europa.png";
$("#map img").attr("src",bName);
});
});
</script>
ここに私のHTMLコードがあります
<area shape="poly" coords="356,300,355,299,354,298....." href="/kosmetikstudios/deutschland/Bayern" title="Kosmetikstudios in Bayern" alt="Kosmetikstudios in Bayern" />
<area shape="poly" coords="156,200,425,699,154,298....." href="/kosmetikstudios/deutschland/Berlin" title="Kosmetikstudios in Berlin" alt="Kosmetikstudios in Bayern" />
誰かが私を助けてくれることを願っています。
よろしく、
デイブ