我有一组文件输入字段,我希望除第一个之外的所有字段都被禁用。
当第一个被设置(onchanged)时,下一个文件字段被解锁。
我该怎么做呢?我努力了:
$('#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>