function savedata() {
var items = new Array();
$("#tblGRN TBODY TR").each(function () {
var row = $(this);
var item = {
'PoNo': row.find("TD").eq(0).html(),
'FundSource': row.find("TD").eq(1).html(),
'Vote': row.find("TD").eq(2).html(),
'ICode': row.find("TD").eq(3).html(),
'Description': row.find("TD").eq(4).html()
}
items.push(item);
});
console.log(JSON.stringify(items));
$.ajax({
type: "POST",
url: "/GRN/Create",
data: JSON.stringify(items),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (r) {
$.notify({
message: "Hello"
}, {
type: 'danger'
});
console.log("sucsess");
$("#tbody").empty();
}
});
}
$.notify不是一个函数
$。无任何问题通知外部工作人员。我在success函数中放入的任何东西都不会给我一个函数。在ajax之外,所有库都可以正常工作。
暂无答案!
目前还没有任何答案,快来回答吧!