从下拉列表中选择其他显示文本字段:ROR

时间:2011-05-26 20:47:13

标签: ruby-on-rails

我应该如何使用javascript执行此操作?我看了其他地方,但每个例子都使用Jquery。

仅在选择其他文本框时应该可见。

1 个答案:

答案 0 :(得分:0)

假设您使用的是旧版本的rails,其原型为js库。

在选择列表的onchange事件中添加javascript函数以显示包含文本框的div(假设您显示选择列表的值5的文本框):

<select id="select_item" name="select_item" onchange="display_date_range(this);">
... where 5 is the value of the option that needs to show text box
</select>

  function display_date_range(list) {
    if(list.options[list.selectedIndex].value == 5) {
      $("text_div").show();
    }
    else {
      $("text_div").hide();
    }
  }

<div id="text_div"><input type="text" value="Hooraaahhh..." /></div>