gpt4 book ai didi

jQuery 脚本可以在 jsfiddle 上运行,但不能在我的网站上运行?

转载 作者:行者123 更新时间:2023-12-01 04:56:13 25 4
gpt4 key购买 nike

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

这是我的功能:

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

最佳答案

试试这个,效果会很神奇:=)

<!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>

关于jQuery 脚本可以在 jsfiddle 上运行,但不能在我的网站上运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13997843/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com