【发布时间】:2011-07-22 22:58:25
【问题描述】:
如何防止图像移动。如果图像的位置= 350,如何防止移动。类似遏制的东西,正好相反。请帮忙。
$('#image').draggable(
{
drag: function(event, ui)
{
if($(this).offset().left > 350)
{
//there should be a code prohibiting the
//movement of the image if its position is = 350
}
}
});
【问题讨论】: