0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

jQueryとjavascriptの違い

Last updated at Posted at 2024-01-14

結論

Javascriptは言語で、jQueryはライブラリー名
image.png

詳しい説明

Javascriptとは

ブラウザで実行される言語で、DOMの操作、イベントハンドリング、アニメーションを可能とします。
Javascriptはweb開発の基礎であり、どのブラウザにも組み込まれている。
image.png

jQueryとは

上記、Javascriptを簡単に書くためのライブラリのこと。煩雑なDOM操作やAJAXコール、ブラウザ間の互換性の問題を抽象化して簡潔な構文で書くことができるように設計されている。


Javascriptでのコーディング

document.getelementById('element').addEventListener('click', function(){
    //処理
});

jQueryでのコーディング

$('#element').on('click', function(){
    // 処理
});

まとめ

言語と、それを簡略化して実装するためのライブラリーです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?