脚本 :
function initializeSort() {
jQuery('#apps').sortable().bind('sortupdate', function () {
// Save order in extension when apps are moved
var children = document.getElementById("#apps").innerHTML;
console.log(children);
chrome.runtime.sendMessage({
type: "updateApps",
data: children
});
});
}
我得到这个错误,
Uncaught TypeError: Cannot read property 'innerHTML' of null
我唯一能想到的是,这与.sortable()
我从这里使用的代码有关, http: //farhadi.ir/projects/html5sortable/,因为在我使用.sortable()
元素之前它工作正常。