我正在玩新的Google 1按钮,我试图设置一个简单的演示.
这是我的代码:
<html>
<head>
<title>Plus One</title>
</head>
<body>
<!-- Place this tag where you want the +1 button to render -->
<g:plusone callback="plus_one_callback" href="http://www.testurl.com/"></g:plusone>
<!-- Place this tag after the last plusone tag -->
<script type="text/javascript">
(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);
})();
function plus_one_callback(){
alert('callback');
}
</script>
</body>
</html>
但是它不会呈现按钮,并且我的控制台中没有错误消息.
这是我的firebug网络面板的屏幕抓图:
谁知道为什么会这样?
最佳答案 它不起作用,因为从Firefox 3开始,您无法在本地运行外部JS脚本.或者更确切地说,当firefox在url中看到“file://”时,你会遇到问题.这个问题也回答了
here.如果您使用其他浏览器,它可能会有效.