在我看来,我有一些代码是这样的
$(".someclass").hover(function(){
$(this).append("#{render "layouts/show_some_file", title: "some_file"}");
});
该show_some_file.html.haml
文件由两个嵌套的基本 div 组成
在我的浏览器中,我得到
$(".someclass").hover(function(){
$(this).append("<div>
<div>some text</div>
</div>
");
});
悬停时,我进入我的 chrome 控制台SyntaxError: Unexpected token ILLEGAL
。我删除了控制台中的空格,它起作用了。但是如何清理我的红宝石渲染中的空白?