如何实现用户点击页面的超链接,然后本网页就跳转到A页面。然后再新跳转出一个B页面。求代码

2024-11-08 09:40:04
推荐回答(5个)
回答1:

1、Index.html  包含一个可以点击的超链接 到A页面

2、A页面中加上一句


URL中写的是B页面的地址

回答2:

很简单 ,你可以网上搜索 网页跳转,链接跳转, 。html 代码,js 代码 都有 都可以实现 你说的。 当然 我也知道点 。不过 我不想告诉你 。 因为 看你的 名字 。就知道 你是个 骗人的 家伙。

回答3:

在A页面meta里设置个refresh,或者写个js定时跳转

回答4:

不带你这么玩的!影响用户体验!!

回答5:

首页内容:


此处是首页标题



ext-align:center;background:#eee">点我去A页了哦!


A页内容:


此处是A页标题



ext-align:center;background:#eee">

你看到的页面是A页,3秒之后会自动打开一个B页哦





function wait() {
window.open ("pageb.html", "newwindow", "height=500, width=900,toolbar=no,menubar=no, scrollbars=no, resizable=no, location=yes, status=no");
}
setTimeout(wait(),3000);


B页内容:


此处是B页标题



ext-align:center;background:#eee">

你看到的此页面是B页哦


点我可以返回首页哦!





以上共3个页面。名字为 index.html ,  pagea.html ,  pageb.html

相关问答
最新问答