1

如何在 rails 复选框中包含以下功能:

如果单击复选框,则显示 inputBox,否则不显示 inputBox。下面不工作。

= check_box_tag 'update',:onclick=>$('#inputBox')[this.checked ? "show" : "hide"]();

4

2 回答 2

2

Like so :

= check_box_tag 'update', :onclick => "$('#inputBox')[this.checked ? 'show' : 'hide']();"
于 2013-05-29T15:37:36.120 回答
0
= check_box_tag 'update',:onclick=>'$(this).checked() ? $("#inputBox").show(): $("#inputBox")hide();'
于 2013-05-29T15:38:44.573 回答