在IE8中导致JS错误的Twitter按钮(预期标识符)

时间:2015-01-27 19:05:14

标签: javascript twitter internet-explorer-8

我在页面上添加了一个Twitter按钮,使用https://about.twitter.com/resources/buttons

中的代码

一个非常基本的实现看起来像这样



<!DOCTYPE html>
<html>

<head>
</head>

<body>

<a href="https://twitter.com/share" class="twitter-share-button">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>

</body>

</html>
&#13;
&#13;
&#13;

在IE8之外的所有浏览器中运行都是完美的,它会触发错误:SCRIPT1010:预期的标识符 文件:widgets.js,行:1,列:29036

文件https://platform.twitter.com/widgets.js

中的

我不知道我的实施方式是错误的。有没有人有想法,或者这真的是Twitter代码中的IE8错误?

1 个答案:

答案 0 :(得分:1)

根据Twitter widgets.js throws JavaScript error "Expected identifier" on IE8,Twitter于2015年1月停止支持IE8。

我的“解决方案”因此使用条件评论<!--[if gt IE 8]><!--> TWITTER CODE HERE <!--<![endif]--> 来禁用IE8及更低版本中的推文按钮。