Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个滑块,滑块延伸了 100% 的页面。我希望以编程方式克隆第一个元素,因为它离开屏幕并将其放置在最后,或者更确切地说,只是移动它,而不进行克隆以保持低内存。有人能指出我正确的方向吗?
我目前正在使用 EasySlider 1.7
干杯
你在找吗
var hold = $(element); var parent = hold.parent(); hold.detach(); parent.append(hold);
或者
var hold=$(element); hold.position(hold.parent().children().length);
不确定最后一个,但可能需要更多测试:p