0
不知道爲什麼這個jquery ui不能在firefox上工作,但是在chrome see here!!中工作。 還當我在Firefox這個本地運行正常工作任何人可以建議什麼是我的代碼是Jquery-ui在Firefox的localhost上正常工作,但不在服務器上?
HTML
<div class="option" id="f" style="display:inline-block;">
<img class="options" src="http://lorempixel.com/90/90/" alt=""/>
</div>
<br>
<div class="lame" style="display:inline-block;">
<img src="http://placehold.it/350x150" alt=""/>
</div>
jQuery的
$(function() {
$(".option").draggable({ cursor: "pointer",opacity: 0.6,helper: "clone"});
$(".lame").droppable({
accept:".option",drop: function(event, ui) {
$.ui.ddmanager.current.cancelHelperRemoval = true;
$(ui.helper).draggable({cursor : "pointer",opacity: 0.6,containment :".lame"});
$(ui.helper).find('.options').resizable({containment : ".lame"});
}
});
});
什麼不起作用? – melancia