0

Web サイトに新しいコードがあり、イメージ アイコンの一部をクリックできません。URLが表示されるので、タグを読み取っていますが、画像をクリックすることはできません。どんな洞察も役に立ちます。

http://staging.pinupgirlclothing.com/retrodresses/lush-dress-swan.html

ショップを見る

HTMLレイアウトは次のとおりです。

<ul class="box-content">
                <li class="item first">
                <div class="item-info">
        <a href="http://staging.pinupgirlclothing.com/new-items/sp-15252-pk.html" class="product-image"><img src="http://staging.pinupgirlclothing.com/media/catalog/product/cache/1/small_image/115x150/9df78eab33525d08d6e5fb8d27136e95/s/p/sp-15252-pk_01t.jpg" width="115" height="150" alt="Floozy Kiss Lock Purse in Baby Pink Size- 939450" title="Floozy Kiss Lock Purse in Baby Pink Size- 939450" /></a>
    </div>
        </li>
                            <li class="item">
                <div class="item-info">
        <a href="http://staging.pinupgirlclothing.com/new-items/il-hs-bk.html" class="product-image"><img src="http://staging.pinupgirlclothing.com/media/catalog/product/cache/1/small_image/115x150/9df78eab33525d08d6e5fb8d27136e95/i/l/il-hs-bk_01.jpg" width="115" height="150" alt="Vintage Style Sheer Hair Scarf in Black Size- 952104" title="Vintage Style Sheer Hair Scarf in Black Size- 952104" /></a>
    </div>
        </li>
                            <li class="item last">
                <div class="item-info">
        <a href="http://staging.pinupgirlclothing.com/new-items/black-jelly-flats.html" class="product-image"><img src="http://staging.pinupgirlclothing.com/media/catalog/product/cache/1/small_image/115x150/9df78eab33525d08d6e5fb8d27136e95/f/i/fi-032jelly-bk_01_1.jpg" width="115" height="150" alt="Dragonfly Jelly Peeptoe Flats in Black" title="Dragonfly Jelly Peeptoe Flats in Black" /></a>
    </div>
        </li>
                </ul>
4

1 に答える 1

1

main.js のこのコードが問題です。デフォルトの動作 (リンクをたどる) を防止したくない場合は、preventDefault を行わないでください。

    $('.product-view a.product-image').on('click', function(e) {
        e.preventDefault();
    });
于 2013-11-12T18:40:16.533 に答える