我有两个web网页A,B A有一个按钮,点击它,页面从A跳转到B,如何实现,用html和javascript。 谢谢
发布网友
发布时间:2022-04-22 18:31
我来回答
共2个回答
热心网友
时间:2023-11-15 12:39
<!--a.html-->
<script type="text/javascript">
function redirect()
{
if(document.getElementById("c").value == document.getElementById("d").value)
{
window.location.href="b.html"; //跳转到b网页
}
}
</script>
<input id=c><input id=d>
<input type="button" onClick=redirect() value="按钮"></input>追问非常谢谢,再问一句,如果我想连接到 比如 百度, 而不是本地html, 同样的问题该如何解决呢? 不能用window.location了
追答window.location.href="http://www.baidu.com/"; //跳转到百度
为什么不能用 window.location 呢?
热心网友
时间:2023-11-15 12:39
onclick="javascript:window.open(b.html,'_self')“;
<input type="button" onclick="javascript:window.open(b.html,'_self')“; value="按钮"></input>