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 は正常に機能しますが、ページの他の領域をクリックして非表示にするまで、コンテンツのない共有ダイアログ スチールが開きます。
なぜこれがうまくいかないのか、いくつか考えがありますか?
解決しました!
問題は、私が自分の Web サイトで使用している mootools のバージョンでした。ブラウザが提供する JSON オブジェクトを上書きする 1.2.4 バージョンでした。JSON を呼び出そうとすると、共有ダイアログが失敗します。
mootools js ファイルを編集し、最後に次のコードを追加しました。
JSON.parse = JSON.decode; JSON.stringify = JSON.encode;
今、すべてが正常に動作します。