我已經使用了jQuery頁面佈局。現在我這段代碼在jQuery的拖放框中拖動元素
jQuery(function() {
jQuery(".component").draggable({
// use a helper-clone that is append to 'body' so is not 'contained' by a pane
helper: function() { return jQuery(this).clone().appendTo('body').css('zIndex',5).show(); },
cursor: 'move'
});
jQuery('.ui-layout-center').droppable({
accept: '.component',
drop: function() { show('.component') }
});
});
拖動的元素到頁面dropable,但現在我不能再拖動到頁面中dropable元素。我在代碼中犯了什麼錯誤嗎?
我得到與上面的代碼作爲函數_show_ JavaScript錯誤是undefi斯內德。它是一個自定義函數,或者你想使用jQuery的['.show()'](http://api.jquery.com/show/) – andyb 2012-01-07 14:11:13