我是 Jquery 的新手..我想在我的应用程序中使用反弹效果..我在这里看到了一个示例代码。它在那里工作,但是当复制并保存在我的系统中时它不起作用。它给出了 JS 错误:对象不支持方法/属性“效果”。
有任何想法吗?这是我的代码,
<!DOCTYPE>
<html>
<head>
<title>Bounce Effect</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("#button").click(function(){
$("#Target").effect( "bounce", {times:3}, 300 );
});
});
</script>
<style>
p {
background-color:#bca;
width:200px;
border:1px solid green;
}
div{ width:100px;
height:100px;
background:red;
}
</style>
</head>
<body>
<p>Click the button</p>
<button id="button"> Bounce </button>
<div id="Target" class="target" >
</div>
</body>
</html>