现在的位置: 首页 > 综合 > 正文

动态修改div的xy值

2013年03月27日 ⁄ 综合 ⁄ 共 188字 ⁄ 字号 评论关闭

$("div").mousedown(function(e){
$(this).css({
x:e.pageX,
y:e.pageY
}).show();
});

$("div").mousedown(function(e){
$(this).css({
x:e.pageX,
y:e.pageY
}).show();
}).mouseup(function(){$(this).hide()});

抱歉!评论已关闭.