gpt4 book ai didi

在一个 href 中使用 ajaxget 的 jQuery 通知

转载 作者:太空宇宙 更新时间:2023-11-03 18:42:38 24 4
gpt4 key购买 nike

我有 ajax XMLhttprequest 链接:

<a href='javascript:addtobasket100("|1|100|")' class="f">Add to basket</a>

下面的 Ajax:

<script type="text/javascript">
function addtobasket100(int) {
if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
}
else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}

xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("addtobasket100").innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET","add.php?a=" + int, true);
xmlhttp.send();
}
</script>

我想一次调用 ajax http 请求到 add.php 和 jquery 通知(当用户将元素添加到购物车时),有人知道该怎么做吗?

我想使用这个 jQuery 通知: http://marcojetson.github.io/jquery-notification/和这个例子

$.createNotification({
content: '<img src="https://twimg0-a.akamaihd.net/profile_images/770845756/45_normal.jpg"> Hi, I\'m GG Allin'
})

最佳答案

这很简单:

当您从 ajax 调用返回时,只需插入创建通知的代码

xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("addtobasket100").innerHTML = xmlhttp.responseText;
$.createNotification({
content: 'Item Added Succesfully!!!'
})
}
}

关于在一个 href 中使用 ajaxget 的 jQuery 通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17208467/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com