gpt4 book ai didi

javascript - 在 Web.config (MVC 3) 中存储 Google Analytics 的帐户 ID

转载 作者:行者123 更新时间:2023-11-29 18:30:45 26 4
gpt4 key购买 nike

我有这个片段:

<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-11111111-1']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>

如何在 web.config 中存储我的帐户 ID? 我怎样才能将它从 web.config 取回 js(而不是直接写入 id)?

谢谢!

最佳答案

可能没有结构化的方法来做到这一点,我只是从 web.config 中调用它(不使用任何操作,只是简单地编写它),就像这样:

在 web.config 中:

<appSettings>
<add key="GoogleAnalyticsAccountId" value="UA-11111111-1" />
</appSettings>

在 js 中:

_gaq.push(['_setAccount', '@System.Configuration.ConfigurationManager.AppSettings["GoogleAnalyticsAccountId"]']);

关于javascript - 在 Web.config (MVC 3) 中存储 Google Analytics 的帐户 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8692381/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com