使用Ajax在Rails中检索Javascripts变量

时间:2012-06-29 10:17:56

标签: javascript jquery ruby-on-rails ajax

我遇到了麻烦,我不知道如何使用Ajax来检索javascript变量。

这是代码,我想你会明白我的意思

%form{:name => "widget"}
  %input{:name => "color", :onclick => "ob()", :type => "radio"} Bleu/Orange
  %input{:name => "color", :onclick => "bo()", :type => "radio"} Bleu/Orange
%script{:Language => "javascript"}
  function ob()
  {
    var ojblue = 1;
  }
  function bo()
  {
    var ojblue = 2;
  }
= link_to("Edit", "#ojblue", :class => 'btn btn-info', :'data-toggle' => "modal")

所以我试图检索“ojblue”值;经过多次搜索,我知道我必须使用Ajax或Jquery,我知道的唯一提示是使用“remote_function”方法,但我不知道如何处理...

非常感谢你

0 个答案:

没有答案