我有普通HTML网站的代码(30秒内重定向)
<div id="counter" style="text-align: center;">30</div>
<script>
setInterval(function() {
var div = document.querySelector("#counter");
var count = div.textContent * 1 - 1;
div.textContent = count;
if (count <= 0) {
window.location.href="https://example.com";
}
}, 1000);
</script>
但是我需要用放大器html来解决这个问题,而且我在互联网上找不到任何东西。