我有两个web网页A,B A有一个按钮,点击它,页面从A跳转到B,如何实现,用html和javascript。 谢谢
另外,A有两个text(c,d),如果c和d输入一致,才可以跳转,有如何实现?简单说,就是一个onClick实现两个功能,先check,然后再跳转...
另外,A有两个text(c,d),如果c和d输入一致,才可以跳转,有如何实现?
简单说,就是一个onClick实现两个功能,先check,然后再跳转 展开
简单说,就是一个onClick实现两个功能,先check,然后再跳转 展开
2个回答
展开全部
<!--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>
<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 呢?
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询