在本地运行时安装Google Adsense脚本后IE中的错误

时间:2014-04-09 12:18:32

标签: javascript asp.net-mvc visual-studio adsense

我在本地运行时安装Google Adsense Code后在IE中收到错误。将项目加载到Azure网站服务器时没有错误。此外,当我卸载JQuery和Bootstrap时,它仍然有同样的错误。

错误是:

在第37行第41行的eval代码

中抛出了异常

0x80070005 - JavaScript运行时错误:访问被拒绝。

如果存在此异常的处理程序,则可以安全地继续该程序。

我所做的只是:

1)在Visual Studio 2013中创建新项目

2)选择Web项目

3)选择MVC模板

4)将Google Adsense代码粘贴到Index.cshtml(网站主页)中,以便页面显示(我已删除了我的帐号):

@{
    ViewBag.Title = "Home Page";
}


<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- VTS Basic -->
<ins class="adsbygoogle"
     style="display:inline-block;width:160px;height:600px"
     data-ad-client="ca-pub-9999932657399999"
     data-ad-slot="9999999999"></ins>
<script>
    (adsbygoogle = window.adsbygoogle || []).push({});
</script>

知道可能出现什么问题吗?

0 个答案:

没有答案