$.ajax({
url : 'index.php?action=delete',
type : 'POST',
data : {
ids : ids
},
dataType: 'json',
timeout: 8000,
error: function() {
},
success: function(data) {
})
我想请教一下,上面的POST操作,是不是在地址栏中不会将url变成:index.php?action=delete
如果type是GET操作,地址栏中的地址就是变成url:index.php?action=delete
那么:地址栏中的url究竟是如何控制的呢
这个是XMLHttpRequest请求。。不会变更地址栏中的url