从 HTML 页面重定向到另一个页面到标题

Redirect from an HTML page to another page to a title

是否可以设置一个按钮 link 以重定向到另一个页面的标题?

例如,在菜单中我有“已实现项目”页面,我想重定向到“欢迎”页面,我的作品集标题为“已实现项目”。是否可以使用我现在使用的脚本来完成?

<script>
    setTimeout(function(){location.href="http://example.com/alternate_url.html"} , 0);
</script>

我需要这样的东西,但在加载页面后重定向:<a href="http://example.com/alternate_url.html" title="test">test</a>

这个问题有点棘手。但是我使用的网站构建器很糟糕,不会让我编辑按钮代码,只让我编辑 html body 脚本 :)

你可以use this

喜欢

<script>
    setTimeout(function(){location.replace("http://example.com/alternate_url.html");} , 0);
</script>

这有效:)

<script>
    setTimeout(function(){location.href="http://example.com/alternate_url.html",title="test"} , 0);
</script>

<h2 id="test">Title</h2>