4

我有一个用于在 Pinterest 上分享的 JavaScript 函数,如下所示:

function shareOnPinterest(url, desc, coverImage){

var str = "http://pinterest.com/pin/create/button/?url=" + encodeURIComponent(url) + "&media=" + coverImage + "&description=" +
desc;

window.open(str, "_blank");         

}

URL 似乎工作正常,但是当我单击 Pin It 按钮时,它没有固定到板上。

我的页面上也有对这个 Pinterest JavaScript 的引用。

<script type="text/javascript" src="//assets.pinterest.com/js/pinit.js"></script>

有什么我做错了,还是有其他方法可以在 Pinterest 上分享?

谢谢。

4

1 回答 1

2

我不确定您想要什么...您的网页按钮或简单地固定图像?

此代码用于固定图像:

javascript:void((function(){var%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','http://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)})());
于 2012-08-16T08:07:49.827 回答