,可以通过以下步骤实现:
empty()
方法可以清空选项的内容。<select>
元素创建的,可以使用$('select option:selected').remove()
来移除所有选定的选项。$('input[type="checkbox"]:checked').prop('checked', false)
或$('input[type="radio"]:checked').prop('checked', false)
来取消选定状态。以下是一个示例代码:
$.ajax({
url: 'your-url',
method: 'GET',
success: function(response) {
// 清除所有选定的选项
$('select option:selected').remove(); // 清除<select>元素的选项
$('input[type="checkbox"]:checked').prop('checked', false); // 清除复选框的选定状态
$('input[type="radio"]:checked').prop('checked', false); // 清除单选框的选定状态
// 清除自定义的选项
// $('.custom-option').remove();
},
error: function(error) {
console.log(error);
}
});
这样,在ajax请求成功返回数据后,所有选定的选项都会被清除。
请注意,以上代码中使用了jQuery库来简化DOM操作,如果你不使用jQuery,可以使用原生JavaScript来实现相同的功能。
领取专属 10元无门槛券
手把手带您无忧上云