function conf(id){
  if(confirm("确定要删除吗?")){
    window.location="del.asp?id=" + id;
  }
}
下面的 onclick="conf(123)"