发布网友 发布时间:2022-04-21 02:22
共5个回答
热心网友 时间:2022-04-07 06:41
javascript常用的页面跳转方法为:
window.location.href = some_url;下面举例演示点击按钮后,延迟3秒跳转页面:
1、HTML结构
<input type='button' value='延迟3秒跳转到百度首页' onclick="fun()"/>2、javascript代码
function fun(){3、演示效果:
热心网友 时间:2022-04-07 07:59
<script>location.href="http://zhidao.baidu.com";</script>热心网友 时间:2022-04-07 09:34
<input type="button" value="提交" onclick="tj()">热心网友 时间:2022-04-07 11:25
<script>window.location.href=" ";</script>热心网友 时间:2022-04-07 13:33
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">