如何使用javascript按钮预先填充Facebook评论框其他社交评论框

How to pre-populate Facebook Comment box other social comment box using a javascript button

本文关键字:评论 其他 Facebook 填充 javascript 何使用 按钮      更新时间:2023-09-26

我设计了一个用于社交网络的文本装饰器。由于文本被生成到一个文本框中,并且应该在社交网站上共享,我需要让手机用户只需点击一个按钮就可以将装饰好的文本复制粘贴到社交评论框中。

挑战在于,fb评论框或disqus和其他内容都是在iframe中提供的。有人能纠正我的按钮代码吗?

input value="Encool" type="button" class="button" style="width:70%" 
       onclick="window.frames['iframename'].document.getElementById('formname').textareaname.value=    document.getElementById('decoratedtextarea').value;"

对不起,你不能这么做。由于同源策略,另一个域提供的Iframe无法访问。这是为了防止各种形式的跨站点脚本攻击。(这与您想要做的没有什么不同)