我正在尝试使用命名空间,但不能让它工作。我尝试使用 mdd = {} 包装所有代码,并且尝试将所有代码都包装在$(document).ready(
其中,var MDD = {}
但均未成功。
如何为此代码添加命名空间?
<script type="text/javascript">
$(document).ready( function() {
$("#categories").sortable({
revert: true,
receive: function(evt, ui) {
ui.item.remove();
if ( $('#list_to_process li').length == 0) {
$('#list_to_process').remove();
}
}
});
$("li.to_process").draggable( {
connectToSortable: "#categories",
helper: "clone",
revert: "invalid"
});
});
</script>