Javascriptを使用して、テキストを「title」タグからページの大きな画像の下の説明に交換しています。
大きな画像の下にスワップされているテキストへのリンクを追加するにはどうすればよいですか?
こちらのサンプルページ-サンプルページ
js- _
function updateCaption(elm) {
document.getElementById('captionText').innerHTML = elm.getAttribute('title');
}
html- _
<a href="ipod-blue-large.jpg" onmouseover="updateCaption(this);" title="iPod Blue" rel="zoom-id:ipod"
<a href="ipod-blue-large.jpg" class="MagicZoom" id="ipod"><img src="ipod-blue-large.jpg"></a><span id="captionText">Text to be swapped</span>