0

当我点击图片时,我有这个网站。

我需要通过以下链接获取新页面http://www.centerwow.com/main/portfolio/2/

在此处输入图像描述

你可以看到下面的代码:

<div class="box-1" style="direction: rtl;">
        <a href="http://www.centerwow.com/main/portfolio/2/"><img class="alignnone size-full wp-image-322" title="אתר לדוגמא" src="http://www.centerwow.com/roei/22072012/orenram/wp-content/uploads/2012/10/page1-img3.jpg" alt="" width="219" height="124"></a>        <a href="http://www.centerwow.com/main/portfolio/0/">example portfolio</a>
        <span>just click here</span>
        <p> some text</p>
    </div>

当我单击图像或HTML <a> Tag我应该转到其他页面但没有任何反应时。

相同的代码在jsFiddle中工作。

我应该怎么做才能使它工作/转到其他页面。

非常感谢。

4

1 回答 1

1

查看第 92 行的“jquery.elastislide.js”文件(指向以下代码):

$.elastislide.defaults = {
speed : 450, // animation speed
easing : '', // animation easing effect
imageW : 190, // the images width
margin : 3, // image margin right
border : 0, // image border
minItems : 3, // the minimum number of items to show.
// when we resize the window, this will make sure minItems are always shown
// (unless of course minItems is higher than the total number of elements)
current : 0, // index of the current item
// when we resize the window, the carousel will make sure this item is visible
--> onClick : function() { return false; } // click item callback**
}; 

只需删除“return false;” 从这条线

于 2012-10-15T08:01:00.540 回答