ホームページ > 記事 > ウェブフロントエンド > JQuery_jquery を模倣した効率的な JSLite コードを作成するためのヒント
jQuery と JavaScript のパフォーマンスについて議論する記事は珍しくありません。ただし、他の人が jQuery についてまとめた速度のヒントや提案に基づいて、JSLite と JavaScript コードを改善する方法を教える予定です。優れたコードは速度の向上をもたらします。高速なレンダリングと応答性により、ユーザー エクスペリエンスが向上します。
まず、JSLite は JavaScript であることを覚えておいてください。これは、同じコーディング規約、スタイルガイド、ベストプラクティスを採用する必要があることを意味します。
まず、JavaScript の初心者で jQuery を使用したことがない場合は、まず公式ドキュメントの構文紹介を読むことをお勧めします。これは高品質の JavaScript チュートリアルです。つまり、jQuery を使用していることになります。しばらく。 。
JSLite を使用する準備ができたら、次のガイドラインに従うことを強くお勧めします。
キャッシュ変数
DOM トラバーサルはコストがかかるため、再利用される要素をキャッシュするようにしてください。
JSLite は JavaScript と同じです。一般的に、変数が関数のスコープ内にあることを確認するのが最善です。
JSLite オブジェクトを簡単に識別できるように、変数の前に $ プレフィックスを追加します。
複数の var ステートメントを 1 つのステートメントに統合し、未割り当ての変数を最後に置くことをお勧めします。
で使用してください
JSLite の新しいバージョンでは、より短い on("click") が click() のような関数の代わりに使用されます。以前のバージョンでは、 on() は binding() でした。 on() は、イベント ハンドラーをアタッチする方法として推奨されます。ただし、一貫性を保つために、単に on() メソッドをまとめて使用することもできます。
$first.hover(function(){
$first.css('border','1px 赤一色');
})
// 提案
$first.on('クリック',function(){
$first.css('border','1px 赤一色');
$first.css('color','blue');
})
$first.on('hover',function(){
$first.css('border','1px 赤一色');
})
一般に、可能な限り関数を組み合わせることが最善です。
JSLite でメソッドの連鎖操作を実装するのは非常に簡単です。以下を活用してください。
コードの可読性を維持する
コードを合理化し、チェーンを使用すると、コードが読みにくくなる可能性があります。ピンチや改行を追加すると、驚くべき効果が得られます。
短絡評価は、&& (論理 AND) または || (論理 OR) 演算子を使用して、左から右に評価される式です。
コードを合理化する 1 つの方法は、コーディングのショートカットを利用することです。
DOM 要素に対して多くの操作 (複数の属性や CSS スタイルを連続して設定する) を実行する予定がある場合は、最初に要素を分離してから追加することをお勧めします。
$element = $containerLi.first();
//... 多くの複雑な操作
// より良い
var
$container = $("#container"),
$containerLi = $container.find("li"),
$element = null;
$element = $containerLi.first().detach();
//... 多くの複雑な操作
$container.append($element);
JSLite でのメソッドの使用に慣れていない可能性があります。必ずドキュメントを確認してください。より優れた、より高速な使用方法がある可能性があります。
As mentioned earlier, DOM traversal is an expensive operation. A typical approach is to cache parent elements and reuse these cached elements when selecting child elements.
Putting the universal selector into a descendant selector has terrible performance.
Universal selectors are sometimes implicit and difficult to find.
For example, the Id selector should be unique, so there is no need to add additional selectors.
I emphasize here that the ID selector should be unique, there is no need to add additional selectors, and there is no need for multiple descendant ID selectors.
New versions are usually better: more lightweight, more efficient, with more methods, and more comprehensive coverage of jQuery methods. Obviously, you need to consider the compatibility of the code you want to support. For example, does the project run on good support for HTML5/CSS3
Combine JSLite and javascript native code when necessary
As mentioned above, JSLite is javascript, which means that anything you can do with JSLite can also be done with native code. Native code may not be as readable and maintainable as JSLite, and the code may be longer. But it also means more efficient (usually the closer to the underlying code the less readable the higher the performance, for example: assembly, which of course requires more powerful people). Keep in mind that no framework can be smaller, lighter, and more efficient than native code (note: the test link is no longer valid, you can search for the test code online).
Final advice
Finally, I record this article with the purpose of improving the performance of JSLite and some other good suggestions. If you want to delve deeper into this topic you will find a lot of fun. Remember, JSLite is not required, just an option. Think about why you want to use it. DOM manipulation? ajax? stencil? css animation? Or a selector? Heavy jQuery developer?