我正在尝试使用jquery来实现一个portlet / widget样式接口,它有3列并在它们之间和之间拖放。它几乎完全正常工作,除了它在IE6中不起作用的问题
(function($) {
$.fn.portlet = function() {
return this.each(function() {
$(this).sortable({
connectWith: ['.portletColumn'],
handle: 'h3',
placeholder: 'drop',
forcePlaceholderSize: true,
start: StartDrag,
stop: StopDrag
});
});
};
function StartDrag(event, ui) {
try {
//in ui.helper[0] is null and hence the issue
//alert(ui.helper[0]);
currentlyDraggedNode = this;
alert(currentlyDraggedNode);
('.drop').css('height', jQuery(ui.helper[0]).outerHeight() + 'px');
$('.portletColumn').css('background-color', '#eee');
} catch (ex) { }
}
function StopDrag(event, ui) {
try {
$('.portletColumn').css('background-color', '#fff');
UpdateOrder();
} catch (ex) { }
}
function GetString(selector) {
var querystring = "";
$(selector).each(function() {
var id = $(this).attr('id');
if (id && id != '') {
querystring += id + ';'
}
});
return querystring;
}
function UpdateOrder() {
var querystring = GetString('#col1 .portletColumn .portlet') + '|;' + GetString('#col2 .portletColumn .portlet') + '|;' + GetString('#col3 .portletColumn .portlet');
$.get("/handlers/portlet.ashx?" + querystring);
}
})(jQuery);
答案 0 :(得分:1)
我可以问你为什么使用jQuery(ui.helper[0])
代替jQuery(ui.helper)
吗?
我在jQuery UI的源代码中看到的所有代码都以这种方式引用它