我正試圖用Pinterest PinIt按鈕將概念的簡單證明放在一起。我們有一個產品頁面,用一種顏色顯示一個項目的圖像,但用戶可以點擊一個按鈕並以另一種顏色查看同一產品。點擊按鈕時,我需要更改PinIt按鈕中的鏈接以反映當前顏色,因此如果用戶嘗試固定項目,它會固定當前選定的顏色。以下是我目前擁有的代碼片段。當我刪除名稱和網址或我們的測試服務器時,我可能錯過了一個或兩個轉義字符。 (名稱已更改爲保護無辜)JQuery更改鏈接tage的href屬性
當我單擊顯示黑色按鈕,然後單擊固定它時,它仍顯示白色圖像。我對JQuery很新,所以任何幫助將不勝感激。
JS:
$("#button").click(function() {
var productPage = "http://myproductpage.com";
var productImage = "http://MyproductimageBlack.jpg";
var productDescription = "MyProduct";
var linkValue = "http://pinterest.com/pin/create/button/?url=" + productPage + "&media=" + productImage + "&description=" + productDescription;
$('#PinLink').attr('href', linkValue);
});
標記:
<a href="http://pinterest.com/pin/create/button/?url=http%3A%2F%2Fmyproductpage.com%3D524&media=http%3A%2F%2myproductimagewhite.jpg&description=MyProduct" id="PinLink" class="pin-it-button">
<img src="//assets.pinterest.com/images/PinExt.png" title="Pin It!" alt="Pin It!" />
</a>
<input type="button" id="button" name="button" value="Show Black"/>
我試過所有這些建議,它仍然無法正常工作。該鏈接是使用HTMLTextWriter動態創建的,但即使我在html中對其進行了硬編碼,我也會得到相同的結果。我開始認爲這與我的環境有關。當我嘗試替換方法時,我得到了這個錯誤。 – Rhonda
Microsoft JScript運行時錯誤:無法獲取屬性'replace'的值:對象爲null或undefined – Rhonda