希望这是一个非常简单的方法
我想在ajax函数完成时显示通知。我的ajax很好,我似乎无法让通知工作。我有jquery和所有安装的东西,我也有来自datestr
的notify.js。
使用谷歌开发者工具我只是一直得到以下错误。
Uncaught TypeError: $.notify is not a function
这是我的ajax功能。这完全正常,因为我不需要显示任何通知:(
function MyAjaxFunction()
{
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("mainpagemenu_myDiv").innerHTML = xmlhttp.responseText;
$.notify("Hello World"); // <- **** this is the thing I want to do
}
}
xmlhttp.open("POST", "/myaspfile.aspx", true);
xmlhttp.send();
}
我已在我的文件中链接
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
和
<script src="/bootstrap/js/notify.js"></script>
答案 0 :(得分:1)
链接到以下脚本
SparkContext
位于页面顶部(在使用Ajax函数之前)