0

我是 javascript 的新手,我自己创建了一个函数,但它不起作用

function oi_delete(ns_oi){
alert("Are You Sure About DELETE image # " + ns_oi + " ?");
$.post('insert.php', {ns_oi:ns_oi});
location.reload();}

警报和位置正在工作,但第二行:$.post('insert.php', {ns_oi:ns_oi}); 不工作或工作错误!

我已经创建了这个函数来发送一个值“ns_oi”到 insert.php 并且在 insert.php 中我得到了那个值并做一些事情

谁能帮助我并说出问题所在?

4

1 回答 1

1

为什么不使用正确的jQuery.post()功能正确发送它,例如:

function oi_delete(ns_oi){
    alert("Are You Sure About DELETE image # " + ns_oi + " ?");

    $.post('insert.php', {ns_oi:ns_oi}, function(data) {
        location.reload();
    });

}
于 2013-10-26T09:22:55.353 回答