2

我有一个无法在我的网站上运行的 jQuery 函数。Firebug 和 Chrome 的检查员都没有报告任何错误。我运行了一个jsfiddle,它在那里工作得很好。关于问题可能是什么的任何想法?我很困惑。

这是我的功能:

$("#totop").hover(
    function(){
        $(this).stop().animate({height: "50px"}, "slow");
    },
    function(){
        $(this).stop().animate({height: "20px"}, "slow");    
    }
);

​</p>

4

2 回答 2

1

试试这个,会像魅力一样工作:=)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" />
<meta name="author" content=""/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
<title></title>
<style type="text/css">
*{margin:0px;padding:0px}
#totop{width:400px;
height:20px;
position: absolute;
bottom: 0px;
left: 35%;width: 30%;
background: #78D3D9;
height: 20px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){

$("#totop").hover(
function(){
    $(this).stop().animate({height: "50px"}, "slow");
},
function(){
    $(this).stop().animate({height: "20px"}, "slow");    
}
);

});

</script>
</head>
<body>
<a href="#topofpage"><div id="totop"></div></a>
</body>
</html>
于 2012-12-21T22:26:43.467 回答
0

这是其他提出相同问题的人的答案:

将代码包装在:

$(function() { /* your code here */ });
于 2012-12-21T22:33:22.073 回答