欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【汇智学堂】JAVAWEB学习日志AJAX【删除】

程序员文章站 2022-06-29 20:03:54
...

一、js页面

function delinvest(ID) {
    var ID=ID;

    $.ajax({
        type : "post",
        url : "/page/user/ServletChildren?do=del&ID="+ID+"",
        cache : true,
        async : true,
        success: function (msg ){
            if(msg==1){
                alert('111111');
            }

        },
        error:function (XMLHttpRequest, textStatus, errorThrown) {
            alert(typeof(errorThrown));
        }
    });
}

二、jsp页面

      <input  type="button"   value="删除" onclick="delinvest(${data.ID})">