2010-01-08 146 views

回答

2

你可能不想在Django中做到這一點。擴展在T. Stone's answer,像這樣的jQuery應該工作:

<script> 
$(document).ready(function(){ 
    $("#some-field").change(function() { 
    var currentVal = parseInt($(this).val()); 
    if (!isNaN(currentVal) && currentVal > 4) { 
     $('#form2').show(); 
    } 
    else { 
     $('#form2').hide(); 
    } 
    }) 
    .change(); 
}); 
</script> 

你想標記form2爲隱藏最初。

+0

這是正確的方法,因爲我錯誤地解釋了OP要求的內容。 – 2010-01-08 09:45:09

+0

我現在添加了隱藏表單的代碼,如果該值未通過測試。 – 2010-01-08 09:49:15

+0

工作得很好......感謝Dominic n T的所有幫助 – Stephen 2010-01-08 10:01:09

相關問題