-1

拖放示例。克隆禁用

我需要克隆代码

      .parent('.ui-wrapper').draggable({
                    revert  : 'invalid'
                    ,helper:'clone'// I added this line
                });

有哪些必要的改变?如果您查看源代码,我将不胜感激

4

1 回答 1

0

将两行更改为

revert  : "invalid", // note the double quotes
helper : "clone"// I added this line

在你的例子中让它对我有用。

于 2013-01-04T09:24:52.443 回答