当我对div QUICKLY 进行排序/重新排列时,我收到以下错误。
TypeError: this.placeholder[0].parentNode is null
JQuery UI是我正在使用的API:http://jqueryui.com/sortable/
$("#contents").sortable({
beforeStop: function (event, ui) {
console.log("BeforeStop Fn Invoked:Parent Node Val: " + $(ui.placeholder).parent()[0]);
if (typeof ($(ui.placeholder).parent()[0]) === 'undefined') {
console.log("If condition passed: " + ($(ui.placeholder).parent()[0]));
$("#contents").sortable('cancel');
}
console.log("BeforeStop Fn Terminates");
},
stop: function (event, ui) {
console.log("Inside Stop Function");
var op = $(this).sortable('toArray');
for (i = 0; i < result.length; i++) {
result[i] = result[i].replace('-sn', '');
}
var contents_identifier = JSON.stringify(op);
$.post(baseurl + 'index.php', {
para1: contents_identifier
},
function (data) {
fill_content_table();
});
console.log("Stop Fun Terminated\n");
}
}).disableSelection();
每当我遇到上述错误时,这就是Firebug控制台打印的内容:
##################################################################
BeforeStop Fn Invoked: Parent Node Val: undefined
If condition passed: undefined
BeforeStop Fn Terminates
TypeError: this.placeholder[0].parentNode is null
我想只要执行停止功能就会发生异常或以上错误(因为我看不到调试语句内部停止功能)。
尝试了一些事情,比如推迟执行死刑。但它没有用。 任何帮助表示赞赏。
UPD: 请注意,以下是SUCCESS的控制台输出:
##################################################################
BeforeStop Fn Invoked: Parent Node Val: [object HTMLDivElement]
BeforeStop Fn Terminates
Inside Stop Function
POST https://www. 200 OK 730ms
Stop Fun Terminated
####################################################
POST https:www.........200 OK 734ms
答案 0 :(得分:0)
您需要ui.placeholder
周围的引号$('ui.placeholder')