次の関数では:
(function() {
var po = document.createElement('script');
po.type = 'text/javascript';
po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(po, s); })
();
以下は、po ドキュメント スクリプト オブジェクトを作成します。ソースは google plusone.js からのものです。次に、ドキュメントの最初のスクリプト要素を取得し、s に割り当てます。最後に、スクリプトを po の前に挿入します。
私の質問は、その機能の目的は何ですか?