由于某些原因,当我在show.js.erb文件中使用link_to时,javascript无法正常工作...

这有效:

$(".commentvotecount<%= params[:commentid]%>").html("<%= positiveVoteCount = @comment.plusminus %>");

这不是:
$(".commentvotecount<%= params[:commentid]%>").html("<%= positiveVoteCount = @comment.plusminus %> <%= link_to 'About', '/about' %>");

怎么了?

谢谢。

最佳答案

请使用escape_javascript,以便将引号转义。

$(".commentvotecount<%= params[:commentid]%>").html("<%= escape_javascript link_to('About', '/about') %>");

10-05 20:54
查看更多