我正在尝试删除可能出现在我的 Google Analytics 标记中的特殊字符,因为特殊字符似乎会导致某些版本的 IE 中的脚本错误。我有这个功能:
function removeSplChars(inStr) {
inStr = inStr.replace(/[^a-zA-Z0-9 ]/g, "");
return inStr;
}
并且有当前有效的GA代码:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '<c:out value="${profileId}"/>']);
<c:choose>
<c:when test="${(lastCmdName eq 'CategoryDisplay') or (lastCmdName eq 'ProductDisplay')}" >
_gaq.push(['_setCustomVar',
2, // This custom var is set to slot #2.
'<c:choose><c:when test="${WCParam.source eq 'search'}">Search</c:when><c:otherwise><c:out value="${topCat}" /></c:otherwise></c:choose>', // The top-level name for your online content categories.
'<c:choose><c:when test="${WCParam.source eq 'search'}">Search <c:out value="${WCParam.searchTerm}" /></c:when><c:otherwise><c:out value="${topCat}" />|<c:out value="${subCatA}" />|<c:out value="${subCatB}" />|<c:out value="${subCatC}" /></c:otherwise></c:choose>', // Records value of breadcrumb name
3 // Sets the scope to page-level.
]);
</c:when>
<c:otherwise>
</c:otherwise>
</c:choose>
_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>
但是当我将该函数放在代码中时,我仍然看到 Chrome 调试器中出现了特殊字符。例如,当我打开一个包含名为“Matt's”的产品的页面时,它会显示为 Matt's。我想要的是马茨。我们还有其他带有 & 和其他特殊字符的产品名称,所以我只想允许 Az 和数字(大写/没有大写都可以)
任何意见,将不胜感激。我查看了关于 SO 的以下帖子,但到目前为止还没有找到任何可以帮助我完成这项工作的内容:
如何处理 (® ´ © ¿ ¡ ° À ) javascript 中的特殊字符?
javascript regexp remove all special characters
使用 JavaScript 从字符串中删除除空格以外的所有特殊字符
我是 JSP 和 JavaScript 的新手,所以我确定我没有将代码放在正确的位置,或者我可能需要在页面上添加其他内容?我尝试将 removeSplChars 函数放在 () 中或添加一个 ; 没有运气。不幸的是,我必须在工作中学习这一点,所以我必须专注于完成我被赋予的任务,而不是花时间真正理解语言的逻辑/语法。