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.
如何在克隆时隐藏拖动的项目
$( ".selector" ).draggable({ helper: "clone" });
我想在拖动时隐藏克隆的项目
助手的 CSS 类是ui-draggable-helper
ui-draggable-helper
您可以使用 CSS 来隐藏它:
.ui-draggable-helper { display:none; }