jQuery 防止重复提交
$('.skip').one("click",function(){
window.location.href = "/netsale/audit/accoAudit_detail.jsp?requestno="+$(this).attr('id');
});
使用jQuery 的 one 进行click的绑定事件
$('.skip').one("click",function(){
window.location.href = "/netsale/audit/accoAudit_detail.jsp?requestno="+$(this).attr('id');
});
使用jQuery 的 one 进行click的绑定事件