我正在使用的以下代码工作正常,它可以满足我的要求,但它看起来真的很草率,并且想要实现“replaceWith”功能以使其更清洁。
我想显示 div1 10 秒,隐藏 div,然后显示 div2 10 秒,隐藏 div 并显示 div3 等...有人可以帮我使用 replaceWith 功能清理它。
<script type="text/javascript">
jQuery(function($){
setTimeout(function() {
$('#below-post-block-1').hide();},
10000);
});
jQuery(function($){
setTimeout(function() {
$('#below-post-block-2').show();},
10000);
});
jQuery(function($){
setTimeout(function() {
$('#below-post-block-2').hide();},
20000);
});
jQuery(function($){
setTimeout(function() {
$('#below-post-block-3').show();},
20000);
});
</script>
在此先感谢-保罗