项目中常常须要进行跳转操作。然后不同的业务场景有不同的需求,以下我列出自己项目中用到的三种场景:
1、通过html标签进行跳转(最简单的方式)
<a href="http://blog.csdn.net/cl05300629">伫望碧落的博客</a>
2、通过button实现页面跳转
<input type="button" value="跳转到伫望碧落的博客" onclick="window.location.href="http://blog.csdn.net/cl05300629}">
3、通过js实现页面跳转
(1)、在body中加入一个button或者其它的html标签,用来调用js方法:
<input type="button" value="跳转到伫望碧落的博客" onclick="direct()">
(2)、创建一个js方法:
<script type="text/javascript"> function direct(){ window.location.href="http://blog.csdn.net/cl05300629"; } </script>第一种方式用于没有要求的直接跳转,另外一种用来在须要进行button操作跳转的页面,第三种能够对跳转附加跳转条件。
作者:伫望碧落 出处:http://blog.csdn.net/cl05300629