这个删除的JS写的有问有问题??

如果不是URL问题,还有问题吗吗?URL应该写什么??
2024年12月02日 10:14
有3个网友回答
网友(1):

data:{
"ID":ID

}
这样写吧?

网友(2):

提示什么,应该rul地址路径问题。

网友(3):

{ "ID": ""+ID+""} ,或者用一个变量,
var params = {
action: 'AddProductClassEntity',//方法的名字
ID: ID
};
$.ajax({
type: "POST",
url: “/op/ajax/core.ashx”,
contentType: "application/x-www-form-urlencoded; charset=utf-8",
data: params,
。。。。这样写也行。