私はJavascriptから始めて、この関数を書きました:
function disableField() {
if( document.getElementById("valorFinal").length > 0 ) ) {
document.getElementById("cantidadCopias").disabled = true;
}
}
これは、最初のフィールドが入力されている場合、cantidadCopiasという名前の2番目のフィールドを無効にします。
<label> <span>Valor final:</span>
<input type="text" class="input_text" name="valorFinal" id="valorFinal" onkeydown="disableField()"/>
</label>
<label> <span>Cantidad de Copias:</span>
<input type="text" class="input_text" name="cantidadCopias" id="cantidadCopias"/>
</label>
ただし、最初のフィールドが入力されたときに2番目のフィールドが無効になるわけではありません。