在悬停时我想刷新我的页面

时间:2012-10-01 08:10:44

标签: html css refresh

这是我的代码

<input type="button"  class="refresh" value="refresh">

<style>

.refresh {
    -moz-border-radius: 5px 5px 5px 5px;
    background: none repeat scroll 0 0 green;
    border: medium none navy;
    padding: 5px 15px;
    cursor:pointer;  } .refresh:hover{background: none repeat scroll 0 0 red;}   </style>

我想通过CSS悬停我的页面。这可能吗?

3 个答案:

答案 0 :(得分:3)

没有。您需要编写Javascript代码

下面是jQuery(javascript库)代码

$('.refresh').hover(function(){

window.location.reload();

});

答案 1 :(得分:3)

看到CSS是造型,我会说不...... 这很可能是用Javascript完成的。例如:

onmouseover="window.location.reload()"

答案 2 :(得分:0)

在您的链接上使用onmouseover =“function(this)”,如下面的链接:

http://www.w3schools.com/jsref/event_onmouseover.asp