标签: html onclick anchor
当我点击标记低于错误
未终止的字符串文字
<a onclick="ga('send', 'event', 'CloudStore', 'Click', 'Cloud is here - Banner’);" href="about.php" class="red-text block">Read more</a>
答案 0 :(得分:0)
在最后一个参数字符串中,您有backtick而不是single quote
backtick
single quote
&#39;云在这里 - 横幅'&lt; - 查看字符串结尾文字
只需使用&#39;云就在这里 - 横幅&#39;
function ga() { }
<a onclick="ga('send', 'event', 'CloudStore', 'Click', 'Cloud is here - Banner');" href="#" class="red-text block">Read more</a>