input点击链接另一个页面,各种操作。

Posted 小蜗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input点击链接另一个页面,各种操作。相关的知识,希望对你有一定的参考价值。

1.链接到某页
<input type="button" name="Submit" value="确 定" class="btn" onclick="location.href=‘filename.html‘" />

2.返回(等同后退)
<input name="Submit2" type="button" class="btn" onclick="location.href=‘javascript:history.go(-1);‘" value="返 回" />

3.打开新网页
<input type="button" name="Submit2" value="确 定" class="btn" onclick="window.open(‘filename.html‘)" />

4.打开无边框的新窗口
<input type="button" name="Submit2" value="确 定" class="btn" onclick="javascript:window.open(‘filename.html‘,‘‘,‘width=720,height=500,resizable=yes,scrollbars=yes,status=no‘)" />

5.打开新网页同时指向另一页
<input type="button" name="Submit2" value="确 定" class="btn" onclick="window.open(‘filename.html‘);location.href=‘http://www.cxybl.com‘" />

6.打开无边框的新窗口同时指向另一页
<input type="button" name="Submit2" value="确 定" class="btn" onclick="javascript:window.open(‘http://www.cxybl.com‘,‘‘,‘width=720,height=500,resizable=yes,scrollbars=yes,status=no‘); window.location=‘filename.html‘;" />

7.点击按钮弹出确认alert窗口
方式一:
<input type="button" name="Submit1" value="确定" class="btn"
onClick="alert(‘是否确认提交?‘);location.href= ‘filename.html‘;return false;" >
方式二:
<input type="button" name="Submit2" value="确定" class="btn"
onClick="if (confirm(‘是否确认提交?‘))location.href= ‘filename.html‘;return false;" >

以上是关于input点击链接另一个页面,各种操作。的主要内容,如果未能解决你的问题,请参考以下文章

点击超链接,将页面中某个数据传到另一个页面

app内点击链接跳转到另一个软件下载界面是不是违法?

ajax怎样实现加载页面,点击页面链接不跳转走

跨页面操作错误

Selenium是怎么点击页面上的东西的?

如何在手机浏览器网页中点击链接跳转到QQ聊天界面