如何添加具有特定颜色的可拖动,例如蓝色?
我一直在使用
<script type="text/javascript">
$( function() {
$( ".box" ).draggable({containment: "parent"});
$( ".box" ).css("background-color","blue");
});
</script>
但它显示颜色没有变化,因为它保持白色。另外,为什么会这样呢?
答案 0 :(得分:0)
var color = function(color){
//processing here
return color;
}
$( function() {
$( ".box" ).draggable({containment: "parent"});
$( ".box" ).css("background-color",color("whatever"));
});
你可以在颜色函数中添加某种类型的逻辑,根据你需要的颜色改变颜色