jquery自动获取当前form的id

1、页面引入jquery

 

2、获取form的ID

	var form_id= $(this).closest("form").attr("id");

	alert(form_id);

 

你可能感兴趣的