0

这个时候我有一个简单的形式在rails中选择这种方式

            <%= f.association :tipo,
                :label => false,
                :required => true,
                :input_html => {:class => 'span2', :onChange => "recargarS2(this.value)"}

我想编写一个代码,我猜在事件 click 或 onchange 然后我想当我用 Jquery 点击那个选择时再次找到表中的所有记录(提示)并在选择中显示它

我在很多网站上都找到了,但没有找到解决方案

感谢您的帮助,很抱歉我的英语不是我的母语

4

1 回答 1

0

你应该使用 AJAX。

一个使用 jQuery的小例子:

$.ajax({
   url: "/select/something/" // the URL that user will be request the information
                             // from database.
   success: function(data) {
      console.log(data); // shows in console the returned data from URL.
   };
});

要了解有关 AJAX的更多信息,请查看此处

于 2013-07-04T14:30:25.973 回答