JavaScript does not work after you add new elements ? add more later, but I want you to work for elements how to track down a road I do not know Example;

$(".ui-draggable").draggable();    
$('body').append('<div class="ui-draggable"></div>');
有帮助吗?

解决方案

Because .draggable() is not dynamic.

Do this:

$(".ui-draggable").draggable();    
$('body').append($('<div class="ui-draggable"></div>').draggable());

Your first line attaches only the elements which were present in the DOM.

It will not check for dynamically added ones.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top