﻿function nav(url) {
    window.location.href = url;
}
function del(url) {
    if (confirm("确定删除")) {
        nav(url);
    }
}
