我正在尝试旋转其父级中包含的对象。当我应用旋转时,CSS工作正常,但jQuery没有更新,允许孩子在容器外移动一点。
$(document).ready(function() {
$(".tem_class").draggable({
containment: $(".container_class").parent()
});
jQuery.fn.rotate = function(degrees) {
$(this).css({'transform' : 'rotate('+ degrees +'deg)'});
}
});
任何想法为什么jQuery没有获得新值以及如何纠正它?