我有几个可拖动的 div 加载时随机放置在页面上
我希望通过单击链接将这些 div 重新排列到预先指定的位置,我该怎么做呢?
这是jsfiddle:http: //jsfiddle.net/BbKsq/7/
$("#web01,#web02").each(function () {
var randHigh = Math.floor(Math.random() * ($(window).height() - 200));
var randWide = Math.floor(Math.random() * ($(window).width() - 200));
$(this).offset({
top: randHigh,
left: randWide