Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的页面中插入了 google +1 按钮,当我单击它时,+1 工作正常,但共享对话框钢打开时没有内容,直到我单击页面中的其他区域使其消失
你知道为什么这不起作用吗?
解决了 !
问题是我在我的网站中使用的 mootools 版本,它是 1.2.4 版本,它覆盖了浏览器提供的 JSON 对象。尝试调用 JSON 时共享对话框失败。
我编辑了 mootools js 文件,并在最后添加了这段代码:
JSON.parse = JSON.decode; JSON.stringify = JSON.encode;
现在一切正常。