这是我在 ruby on rails 中的视图。单击图像时我需要调用 removeHistory 函数
<div class=float-right>
<img src="/images/active_star.png" onclick="removeHistory('<%= detail.message%>')" />
</div
我的脚本如下所示:
<script type="text/javascript">
function removeHistory(text){
alert(text);
}
</script>
当 details.message 不包含单引号或双引号时,这可以正常工作。我需要做什么才能使单引号或双引号起作用?