自分がやりたいことを正確に実行するjQueryプラグインを見つけましたが、実行するには時間がかかりすぎます。このチュートリアルの項目3.each()
よりも10倍遅い使用例があることがわかります。for()
.each
それらを.for()
喜ばせるための最良の方法は何ですか?
例えば:
$firstTdChildren = $fixedBody.find(firstTdChildrenSelector)
.each(function(index) {
helpers._fixHeightWithCss($(this), tableProps);
helpers._fixWidthWithCss($(this), tableProps, tdWidths[index % settings.fixedColumns] );
});
どうもありがとう。