最佳,
如果它结束,我怎么能淡出这个?它并不总是显示内容,只有当有人收到消息时。我用谷歌搜索,我找不到它。
此代码:
<script>
$(document).ready(function () {
setInterval(function() {
$.get("<?php echo $host_url; ?>/system/globalmsg.php", function (result) {
$('#globms').hide().html(result).fadeIn(800);
})
}, 5000);
})
</script>
谢谢! ;)
答案 0 :(得分:0)
尝试以下
<script>
$(document).ready(function () {
setInterval(function() {
$.get("<?php echo $host_url; ?>/system/globalmsg.php", function (result) {
$('#globms').hide().html(result).fadeIn(800).fadeOut(500);
})
}, 5000);
})
</script>
您可以根据需要更改fadeOut参数值。