Questions tagged «dynamic-forms»

17
如何取消选中单选按钮?
我有一组要使用jQuery提交AJAX表单后取消选中的单选按钮。我有以下功能: function clearForm(){ $('#frm input[type="text"]').each(function(){ $(this).val(""); }); $('#frm input[type="radio":checked]').each(function(){ $(this).checked = false; }); } 借助此功能,我可以清除文本框中的值,但不能清除单选按钮的值。 顺便说一句,我也尝试过,$(this).val("");但是那没用。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.