如何在谷歌+上的图像共享时删除网址显示?

时间:2015-08-13 05:39:08

标签: javascript google-plus



<html>
  <head>
    <title>Share Demo: Deferred execution with language code</title>
    <link rel="canonical" href="http://www.example.com" />
        <script src="https://apis.google.com/js/platform.js" async defer></script>
  </head>
  <body>
   

   
    <a href="https://plus.google.com/share?url={http://mkainfotech.com/modelstown/public//uploads/model/wall/1439355689990.jpg}" onClick="javascript:window.open(this.href,
  '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600',url=no);return false;">
  
  <img
  src="https://www.gstatic.com/images/icons/gplus-64.png" alt="Share on Google+"/></a>
  
  </body>
</html>
&#13;
&#13;
&#13;

&#13;
&#13;
<html>
  <head>

<!-- begin snippet: js hide: false -->
&#13;
&#13;
&#13;

    <title>Demo: Explicit render of a embedded post</title>
    <link rel="canonical" href="http://www.example.com" />
    <script src="https://apis.google.com/js/platform.js" async defer>
    </script>
    <script>

      function renderWidget() {
        gapi.post.render("widget-div", {'href' : 'https://plus.google.com/109813896768294978296/posts/hdbPtrsqMXQ'} );
      }
    </script>
  </head>
  <body>
    <a href="#" onClick="renderWidget();">Render the embedded post</a>
    <div id="widget-div"></div>
  </body>
</html>

如何删除图像共享时的URL链接显示.. 共享图像的新代码在图像共享时仍显示链接? 如何删除图像共享时的URL链接显示.. 共享图像的新代码在图像共享时仍显示链接? 共享图像的新代码在图像共享时仍显示链接?

1 个答案:

答案 0 :(得分:1)

您可以使用history.replaceState()history.pushState()更改当前网址,而无需更改当前网页。请查看this页面以获取摘要。请记住,所有浏览器都只支持其中一些API。在caniuse上查看this页面,了解哪些内容受支持。