我是铁路的新手。我需要帮助才能在活动管理员中显示动态表单。我需要一个复选框来选择信用卡/借记卡。根据从复选框中选择的值,我想显示两种不同的形式。我怎么能用JS做到这一点?提前致谢
答案 0 :(得分:1)
你必须创建一个表格partial&在那部分你可以把javascript代码:
<script type="text/javascript">
$(function(){
$('#checkbox_name_id').change(function() {
// call a controller action and in return render the partial
in html.
});
});
</script>