单击锚标记时未终止的字符串文字

时间:2017-08-18 11:59:28

标签: html onclick anchor

当我点击标记低于错误

未终止的字符串文字



<a onclick="ga('send', 'event', 'CloudStore', 'Click', 'Cloud  is here - Banner’);" href="about.php" class="red-text block">Read more</a>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

在最后一个参数字符串中,您有backtick而不是single quote

  

&#39;云在这里 - 横幅'&lt; - 查看字符串结尾文字

enter image description here

只需使用&#39;云就在这里 - 横幅&#39;

&#13;
&#13;
function ga() {

}
&#13;
<a onclick="ga('send', 'event', 'CloudStore', 'Click', 'Cloud  is here - Banner');" href="#" class="red-text block">Read more</a>
&#13;
&#13;
&#13;