我只是试图拖动按钮,但我无法做到。
***CSS***
.aDiv_class {height:200px; width 150px; border: 1px solid gray; }
.dButton_class {height: 175px; width:125px; background: url('button.gif'); }
***HTML***
<div class="aDiv_Class">
<input type="button" class="aButton_class" />
</div>
***JS***
$(function() {
/* $('.aDiv_Class').draggable(); // it works & a div attached with button can be dragged */
$('.aButton_class').draggable(); // I just wanted to drag this button but can't
});
答案 0 :(得分:1)
$('.aButton_class').draggable();
您错过了.
答案 1 :(得分:1)
有一个。丢失
$('aButton_class').draggable();
应该是
$('.aButton_class').draggable();
修改强>
可拖动插件可能不支持拖动按钮。
我猜,你可以尝试从按钮中删除点击,但它不再是按钮了。而且,我认为,为什么可拖动不会对按钮起作用。