jQuery UI Draggable - 如何更改原始元素的CSS?

时间:2012-08-07 14:32:58

标签: jquery

我需要在拖动它的副本后更改原始元素的字体颜色。我该怎么做?

jQuery("#tools-container .fieldset-item").draggable({
            revert: "invalid",
            helper: "clone", 
            cursor: "move",
            connectToSortable: ".fieldset-content .sortable",
            stop: function(event,ui) {
            // change helper css   
            }
        }  );

1 个答案:

答案 0 :(得分:2)

您可以使用css功能。

例如:

$(this).css("font-color", "#ff0000");

参考: http://api.jquery.com/css/