【汇智学堂】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})">
上一篇: 【汇智学堂】JAVAWEB学习日志
下一篇: 【汇智学堂】JAVAWEB学习日志