如何让Choicefield隐形?

时间:2013-03-12 17:04:32

标签: python django choicefield

我有两个ChoiceField:第一个有两个值,第二个应该是不可见的。

我希望能够在点击第一个值时显示第二个值。

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

@Joran是对的。您需要使用JavaScript onChange事件处理程序来显示/隐藏第二个选择选项。 jQuery使这个变得微不足道:

var first_select = $('#id_first_select'),
    second_select = $('#id_second_select');

first_select.change(function() {
    // Not checking for a particular value needed, etc.
    second_select.show();
});