用jquery移动元素

我如何使用jQuery移动元素:
position: absolute;
left: 169px;
top: 182px;

至:

position: absolute;
left: 169px;
top: 230px;

有明确的移动,所以不仅仅是css,它必须移动.

谢谢.

解决方法

http://api.jquery.com/animate/

演示:http://jsfiddle.net/pHwMK/

JS:

$(function() {
  $("div.ele").animate({ top: '230px' });
});

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...