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?

More than 5 years have passed since last update.

自分用

0
Last updated at Posted at 2019-11-18

jQuery

jQueryとは、JavaScriptのライブラリである。

jQueryには主に3つの機能がある。

  • DOM

DOMとはDocument Object Modelの略でありHTMLを操作するための仕様。
通常HTMLファイルにあるドキュメントは簡易的に操作できないが、jQueryを使うことで簡易的な操作が可能。

  • アニメーション

CSS3に対応していないブラウザでは利用することが出来ないが、jQueryはJavaScriptのライブラリであるため、古いブラウザでも対応することが可能。

  • Ajax

Ajaxとは外部ファイルを読み込む機能。

jQueryのメリット

  • コードを短く書ける

jQueryのデメリット

  • 読み込みが遅くなる場合がある

[jQueryのダウンロードサイト]
(https://jquery.com/download/)からダウンロードする。
スクリーンショット 2019-11-18 23.31.23.png

<script src="js/jquery.min.js"></script>
headタグの中に記述する。
<script>
   $('#セレクター').メソッド('パラメーター');
</script>

//htmlやcssを書き換えることが出来る//

メソッドチェーン

<script>
  $('#セレクター').html('パラメーター').css('パラメーター');
</script>

//セレクターが同じなら、.で繋げることが出来る。//

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?