datatables、bootstrap的模态框关闭,用JQuery清空form数据

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_29290295/article/details/82885782
	//关闭模态框时清空数据
	$(function (){
		$('#myModalId').on('hidden.bs.modal', function (){
			             $(':input','#myFormId').not(':button,:submit,:reset').val('').removeAttr('checked').removeAttr('checked');
		});
	});

猜你喜欢

转载自blog.csdn.net/qq_29290295/article/details/82885782