1

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

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

1 回答 1

2

您将使用该css功能。

例如:

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

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

于 2012-08-07T14:40:43.447 回答