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 に答える