gpt4 book ai didi

javascript - 使用jQuery从数据库中的特定时间段交替显示文本

转载 作者:行者123 更新时间:2023-11-30 13:19:58 25 4
gpt4 key购买 nike

我是 jQuery 的新手。我需要在特定时间间隔内显示数据库中的客户评价。类似于此处所示的 site .此站点上有一个客户评价 容器,其中在特定时间段内从数据库中逐一显示客户评价。我在谷歌上尝试了很长时间,但没有成功。如果您知道我可以下载此类脚本的任何链接,那将对我非常有帮助。谢谢。

最佳答案

好吧,你可以在你链接的网站上看看它是如何完成的,对吧here

(function ($) {
$(document).ready(function () {
var el = $("#testimonial");
if (el) {
RotateTestimonial();
setInterval(RotateTestimonial, 20000);
}
});

function RotateTestimonial() {
var pageUrl = "RandomTestimonial.php"
$.ajax({
type: "GET",
url: pageUrl,
cache: false,
success: function (msg) {
$("#testimonial").slideUp('slow').fadeOut(3000, function () {
var el = $("#testimonial"); //Refers to some container tag like <div> or <span> where the random message is to be written.
el.html(msg);
el.slideDown('slow').fadeIn('slow');
});
}
});
}
})(jQuery)

关于javascript - 使用jQuery从数据库中的特定时间段交替显示文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10565533/

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