我正在使用valums文件上传器。但我想启动一个复选框,如果用户没有选中它,则禁用上传按钮。
我可以让它以常规形式工作,但不使用valums因为我认为,他使用div元素作为表单属性..所以我猜我已经搞砸了我的代码。
在html中我有:
<form class="well">
<label>Upload a Single File</label>
<label class="checkbox">
<input id="tos" onclick="if(this.checked){this.form.qq-upload-button.disabled=false}else{this.form.qq-upload-button.disabled=true};this.blur();" checked="" value="1" name="tos" type="checkbox"> I have read and agree to the <a href="/tos">TOS</a>
</label>
<div id="file-uploader-demo1">
<noscript>
<p>Please enable JavaScript to use file uploader.</p>
<!-- or put a simple form for upload here -->
</noscript>
</div>
</form>
在fileuploader.js(我有的valums代码)
template: '<div class="qq-uploader">' +
'<div class="qq-upload-drop-area"><span>Drop files here to upload</span></div>' +
'<div class="qq-upload-button btn btn-primary left">Upload a file</div><span class="help-inline"> Lets Do it!</span>' +
'<ul class="qq-upload-list"></ul>' +
'</div>',
你能发现我翘起的东西吗?
基本上,如果用户没有选中复选框,我希望禁用上传按钮。
对于常规表单,此代码有效:
<form class="well">
<label>Upload a Single File</label>
<input type="file" class="span3" placeholder="Click Here">
<span class="help-inline">Associated help text!</span>
<label class="checkbox">
<input id="tos" onclick="if(this.checked){this.form.btn.disabled=false}else{this.form.btn.disabled=true};this.blur();" checked="" value="1" name="tos" type="checkbox"> I have read and agree to the <a href="/tos">TOS</a>
</label>
<input name="btn" type="submit" class="btn btn-primary left" value="UPLOAD">
</form>
答案 0 :(得分:4)
删除内联onclick
处理程序并添加以下JavaScript代码:
$('#tos').on('change', function() {
$('.qq-upload-button').prop('disabled', !this.checked);
});
这使“禁用”状态与复选框的否定“已检查”状态同步。
原始代码无效的原因是this.form.qq-upload-button
是无效的JavaScript。您必须使用this.form['qq-upload-button']
代替。但是,使用我上面发布的代码是多更清洁。