如何使用js自带的ajax? [关闭]

问题描述 投票:0回答:0

我正在尝试编写代码,在 PHP 页面中使用 JS 脚本更改 MS-SQL 服务器数据库。

想法是,当用户单击选中复选框时,将调用下面的函数来检查该项目是否在表中(然后删除)或不在(然后插入)。

我写了这个脚本,但它没有用 - 它甚至没有显示警报窗口......但是如果我删除

$ajax
部分,警报就会出现。谁能帮忙?

代码是:

<script>        
  function getIncluded(x,o_id){  
    alert (x1);
    alert (o_id);
    $.ajax({
      type: "POST",
      url: "hi.php",        
      data:{id:x,o_id=o_id,o:2},
      success: function (response) {
        window.alert("done");
        //window.location.assign("types.php?o=2");
        //window.location.reload();
      }
    });         
  } 
  ajaxCall(); 
</script>
javascript jquery ajax
© www.soinside.com 2019 - 2024. All rights reserved.