0

这是我的代码:

<script type="text/javascript">
(function() {
window.PinIt = window.PinIt || { loaded:false };
if (window.PinIt.loaded) return;
window.PinIt.loaded = true;
function async_load(){
    var s = document.createElement("script");
    s.type = "text/javascript";
    s.async = true;
    if (window.location.protocol == "https:")
        s.src = "https://assets.pinterest.com/js/pinit.js";
    else
        s.src = "http://assets.pinterest.com/js/pinit.js";
    var x = document.getElementsByTagName("script")[0];
    x.parentNode.insertBefore(s, x);
}
if (window.attachEvent)
    window.attachEvent("onload", async_load);
else
    window.addEventListener("load", async_load, false);
})();
</script>

 <!-- Customize and include for EACH button in the page -->
  <a href="http://pinterest.com/pin/create/button/?url=<?php echo $this->helper('core/url')-       >getCurrentUrl(); ?>&media=<?php echo $this->helper('catalog/image')->init($_product, 'image')->resize(500); ?>&description=<?php echo $_product->getShortDescription(); ?>" class="pin-it-button" count-layout="none">Pin It</a> 

php 成功收集了所有元素,当我单击按钮时,它会弹出模式窗口。

但是,在随后的模态窗口中,当我登录时它不会固定到我的板上。

Script 标记和链接都在列表项中。

任何帮助,将不胜感激。

谢谢,莫伊塞斯 M。

4

1 回答 1

2

从您的描述看来,问题在于您没有对参数进行 url 编码,即 ?url= 之后的所有内容

我不确定这是否是您遇到的唯一问题,但它应该可以解决您当前遇到的问题!

于 2012-05-14T08:51:06.260 回答