单击图像链接并根据div中的URL淡入新页面

时间:2013-07-24 05:16:15

标签: javascript jquery html css

我的图片链接在div中,并带有我的下一页的网址。而我想要做的是;单击图像时,它会淡化到链接指定的新页面。如果有人可以提供帮助,那就太棒了。

<div> <a href="page three.htm"> <img src="images/Tbutton.gif" width="71" height="65" border="0" alt="" id="Tbutton" /> </a> </div>

1 个答案:

答案 0 :(得分:1)

认为这应该有效:

$(img).click(function() {
  window.location = $(this).closest('a').attr('href');
});