javascript – 如何在Pinterest上分享
作者:互联网
我有一个JavaScript函数可以在Pinterest上共享,如下所示:
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?
谢谢.
解决方法:
我不确定你想要什么…你的网页按钮或简单地固定图像?
此代码适用于固定图像:
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)})());
标签:javascript,pinterest 来源: https://codeday.me/bug/20190704/1374639.html