在以下函数中:
(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 之前插入 script s。
我的问题是该功能的目的是什么?