我有一个可拖动的 div,当我拖动 div 时,无法弄清楚如何删除右侧或底部的 CSS 规则。
css
#draggablediv
{
right:25%;/*delete this when i begin to drag*/
bottom:25%;/*delete this when i begin to drag*/
}
非常感谢。
$('#message2').draggable({handle: "#draghand", containment: "#drag_border", scroll: false },{
start: function() {
// alert('started');
$(this).css({
"right": " ",
"bottom": " "});
}
});
这是我使用的功能,但我似乎不起作用......我放火但属性不受影响的警报