0

我正在尝试使用 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);
4

1 回答 1

1

我可以问你为什么使用jQuery(ui.helper[0])而不是jQuery(ui.helper)?我在 jQuery UI 的源代码中看到的所有代码都以这种方式引用它

于 2010-03-29T21:56:00.010 回答