我有几个可拖动的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
答案 0 :(得分:1)
如果您已经生成了大量代码,会出现什么问题?
$('#organize').click(function() { // just add id="organize" somewhere
$('#web01').offset({
top: 20, // this is that pre-specified position
left: 20
});
});
我错过了什么吗?