这句话有什么不对
它显示语法错误
它显示语法错误
<%= link_to image_tag('cancel.png'),{:action => 'remove',:id => question.id},:title=>'Delete',:class=>'action',:onclick=>"removeQuestion("+ question.id +");return false;"%>
但
<%= link_to image_tag('cancel.png'),:onclick=>"removeQuestion();return false;"%>
<a title="Delete" onclick="removeQuestion();return false" class="action remove" href="/quizzes/remove/1"><img src="/images/cancel.png?1290165811" alt="Cancel"></a>
解决方法
你写的是什么
<%= link_to image_tag('cancel.png'),:onclick=>"removeQuestion("+ question.id +");return false;"%>
这是炸弹,因为question.id是一个Fixnum.您将无法将Fixnum转换为String TypeError.
如何解决这个问题
<%= link_to image_tag('cancel.png'),:onclick=>"removeQuestion("+ question.id.to_s +");return false;"%>
要么
<%= link_to image_tag('cancel.png'),:onclick=>"removeQuestion('#{question.id}');return false;"%>
这会将问题ID作为字符串发送到您的removeQuestion javascript函数.
要么
<%= link_to image_tag('cancel.png'),:onclick=>"removeQuestion(#{question.id});return false;"%>
这会将问题ID作为整数发送到您的removeQuestion javascript函数.