我有这个HTML:
<input type="text" name="textField" />
<input type="submit" value="send" />
我该如何做这样的事情:
- 当文本字段为空时,应禁用提交(disabled =“ disabled”)。
- 在文本字段中键入内容以删除禁用的属性时。
- 如果文本字段再次变为空(删除了文本),则应再次禁用提交按钮。
我尝试过这样的事情:
$(document).ready(function(){
$('input[type="submit"]').attr('disabled','disabled');
$('input[type="text"]').change(function(){
if($(this).val != ''){
$('input[type="submit"]').removeAttr('disabled');
}
});
});
…但这不起作用。有任何想法吗?
If the button is itself a jQuery styled button (with .button()) you will need to refresh the state of the button so that the correct classes are added / removed once you have removed/added the disabled attribute.