3

我在我的文档中使用表格,我希望能够让用户向列表提交一个新项目,然后让它“自动”出现在列表的顶部(是的,使用 DIV 会更容易,但是使用我所拥有的)。

我正在使用 jQuery,并clone()创建最新表格行的副本,然后fadeIn()在我更新后用于显示新项目并将其添加到列表顶部。因为在内部 jQuery 将元素(假设为 DIV)转换为“块”,所以我还将 css 类更改为“表行”。它工作正常。

整个代码在这里:

    var row = $("tbody tr:first").clone().hide(); // clone and then set display:none
    row.children("td[class=td-date]").html("today");
 // set some properties
    row.children("td[class=td-data]").html("data");
    row.children("td[class=td-type]").html("type");
// fadeIn new row at the top of the table.
    row.insertBefore("tbody tr:first").stop().fadeIn(2000).css("display","table-row"); 

问题是,如果我运行该过程太快——即在fadeIn 完成之前,“clone()”命令最终也会克隆不透明度。

通过调整上面的第一行,我实际上可以让它在 Firefox 中工作:

 var row = $("tbody tr:first").clone().css("opacity","1").hide();

我现在担心的是,我不确定是否可以有效地完成这些工作,和/或“不透明度”是否可以安全地依赖于跨浏览器。

以前有没有人做过这样的事情,并且可以提供任何关于更可靠方法的指示?

4

3 回答 3

2

opacity 作为 jQuery css 属性是安全的跨浏览器,因为它消除了实现中的浏览器差异。这是来源

// IE uses filters for opacity
if ( !jQuery.support.opacity && name == "opacity" ) {
  if ( set ) {
    // IE has trouble with opacity if it does not have layout
    // Force it by setting the zoom level
    elem.zoom = 1;

    // Set the alpha filter to set the opacity
    elem.filter = (elem.filter || "").replace( /alpha\([^)]*\)/, "" ) +
    (parseInt( value ) + '' == "NaN" ? "" : "alpha(opacity=" + value * 100 + ")");
  }

  return elem.filter && elem.filter.indexOf("opacity=") >= 0 ?
  (parseFloat( elem.filter.match(/opacity=([^)]*)/)[1] ) / 100) + '': "";
}

以下作品。 工作演示- 将/edit添加到 URL 以使用它。

  // stop previous animation on the previous inserted element
  var prevRow = $("tbody tr:first").stop(true,true);

  var row = prevRow.clone();
  row.children("td.td-date").text("today");
  row.children("td.td-data").text("data");
  row.children("td.td-type").text("type");

  row.fadeIn(2000).prependTo("tbody");
于 2009-09-07T22:31:42.420 回答
1

没有理由在你的克隆上使用 hide。克隆尚未添加到 dom 中,因此它不可见。

尝试这个:

var row = $("tbody tr:first").clone(); // clone
// set some properties
row.children("td[class=td-date]").html("today");
row.children("td[class=td-data]").html("data");
row.children("td[class=td-type]").html("type");
// fadeIn new row at the top of the table.
row.insertBefore("tbody tr:first").fadeOut(0).fadeIn(2000).css("display","table-row");
于 2009-09-07T22:25:04.753 回答
0

如果你这样做,我认为 jQuery 会处理它。

var row = $("tbody tr:first").clone().fadeIn(0).hide();
于 2009-08-21T23:50:24.063 回答