ファイル入力フィールドのグループがあり、最初のフィールドを除いてすべてを無効にしたい。
最初のファイルが設定(変更)されると、次のファイルフィールドのロックが解除されます。
どうすればよいですか?私が試してみました:
$('#topperform input').change(function(){
$(this).next('label').css('color', 'red') ;
})
これは何もしません。
私のHTML:
<form id="topperform" method="post">
<label>Main image <input type="file" /></label>
<label>2nd image <input type="file" /></label>
<label>3rd image <input type="file" /></label>
<label>4th image <input type="file" /></label>
<label>5th image <input type="file" /></label>
<label>6th image <input type="file" /></label>
<label>7th image <input type="file" /></label>
<label>8th image <input type="file" /></label>
<label>9th image <input type="file" /></label>
<label>10th image <input type="file" /></label>
</form>