代码:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="jQuery/jquery-1.8.3.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$(document).keydown(function () {
alert("hello");
$('div').animate({ left: '+=10px' }, 500);
});
});
</script>
<style type="text/css">
div
{
height: 50px; width: 50px; background-color: Red;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
我只想在每个按键上将我的 div 向右移动,但由于某种原因,这不起作用。我收到“你好”警报,因此动画语句中可能存在一些我无法弄清楚的小错误。
谁能告诉我为什么这不起作用以及正确的方法?
提前致谢。:)