Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

macos - JQuery function doesn't work on Chrome on Mac, but works on Chrome on Win 7 and all other browsers

Reference this page: http://www.ivault.sg/nproduct.php?pid=116&cat=2

Selecting an option on the dropdown box by the side should change the href of 'Add to Cart'.

However this does not happen specifically on Chrome on Macs, but works on all other browsers, even on Chrome in Windows.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Instead of the "click" event, use "change", as in

$("#productOptions").change(function(){
    var id=$(this).attr("value");

    if (id != "") {
        $("#productAddToCart").attr("href","addtocart.php?code="+id);
    }
});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...