如何使用带有javascript函数的自定义URL动态创建“共享此按钮”?

如何使用带有javascript函数的自定义URL动态创建“共享此按钮”?,第1张

如何使用带有javascript函数的自定义URL动态创建“共享此按钮”?

我一直在使用

stButtons.locateElements();

通过AJAX加载内容后生成任何新按钮的函数,我想它也将适用于此。

更好的解决方案:

确保您的

<div>
确保所有
<span>
都有ID,否则可以给它们提供类,但是您需要遍历它们。

function shareChannel(theurl, thetitle)    {    document.getElementById('spanID1').setAttribute('st_url', theurl);    document.getElementById('spanID1').setAttribute('st_title', thetitle);    stButtons.locateElements();    //finally display the popup after the buttons are made and setup.    displaypopup();    }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4957486.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存