我有两个ChoiceField
:第一个有两个值,第二个应该是不可见的。
当我单击第一个值时,我希望能够显示第二个值。
有什么建议吗?
@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();
});