我正在使用两个 UL 并使用 javascript 水平滚动它们,但是当在列表之间拖动列表项时它们会跳跃约 10-20 像素。这发生在 chrome 中,但不在 Firefox 中。问题是,在将 UL Li 设置为 float:left 时,它在 chrome 中已修复,但这会破坏 Firefox 中的整个内容(列表不会停留在一行上)。帮助!
这是网页,请在 webkit/chrome 和 firefox 中打开
http://www.senseculture.com/timeline_new.html
我用于可拖动的代码是:
<script>
$(function() {
$( "#sortable1, #sortable2" ).sortable({
connectWith: ".timeline_content"
}).disableSelection();
});
</script>