怎么设置css跳转

html-css07

怎么设置css跳转,第1张

CSS实现页面跳转,参考如下:

<style type="text/css"> 

   BODY{test:expression(location.href='http://www.baidu.com/js/')} 

</style>

注意:只在IE 浏览器下生效。

比如跳转到b.html页面中pos的位置:

<a href="b.html#pos">跳转</a>

其中b.html页面中加个pos的书签,比如<a name="pos">指定位置</a>