未捕获的TypeError:无法读取属性' ajax'未定义的

时间:2014-05-11 04:37:33

标签: jquery ajax json post

我尝试通过POST调用从AJAX表中删除项目。

///// DELETE INDIVIDUAL ROW IN A TABLE /////
jQuery('.stdtable .delete').live('click', function (e) {
//var newsId1 = $(this).attr("title");

e.preventDefault();

var p = jQuery(this).parents('tr');

if (p.next().hasClass('togglerow'))
   p.next().remove();

p.fadeOut(function () {
    jQuery(this).remove();
});

$.ajax({
  URL: "/AdminPanel/News/DeleteNews",
  data: { "newsId": 1 },
  dataType: "json",
  type: "POST",
  success: function (msg) {
  alert(msg);
}
}); 

在此代码中,我得到未捕获的TypeError:无法读取未定义的属性'ajax'。

2 个答案:

答案 0 :(得分:18)

您是否尝试使用jQuery

执行其余代码所执行的操作
jQuery.ajax({
  URL: "/AdminPanel/News/DeleteNews",
  data: { "newsId": 1 },
  dataType: "json",
  type: "POST",
  success: function (msg) {
  alert(msg);
}

您可以将代码包装在DOM ready函数中,该函数在函数范围内本地设置$的值,这样您就可以始终使用$

jQuery(function($) {
    // code goes here
});

答案 1 :(得分:0)

我无法使用jQuery而不是$解决问题。

就我而言,我添加了源jQuery.js并解决了问题,例如

<script src="<%= Page.ResolveUrl("~/JS/jQuery.js") %>"></script>