jQuery①
jQueryの読み込み
ここでは、jQueryを使うときの、読み込み方法を「body要素」に「hellw, world」とh1タグ出力することで確認してみる。
以下の様になる↓
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<title>jQuery-test01</title>
</head>
<body>
<script type="text/javascript">
$(function() {
$('body').html('<h1>hello, world</h1>');
});
</script>
</html>
$ ---- jQueryという関数の別名
jQueryでは$
という記号がたくさん出てきます。
例えば、、
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<title>jQuery-test02</title>
</head>
<body>
<div class="box">美浜ちよです。</div>
<script type="text/javascript">
$('.box').css('color', 'red');
</script>
</html>
$('.box').css('color', 'red');
の部分は以下と全く同じ意味になります。jQuery('.box').css('color', 'red');
違いは$
がjQuery
になっている点です。jQueryを読み込むとjQuery
という関数が使える様になります。このjQuery
という関数の別名が$
のことです。
ただ、ほとんどすべての場合で$
を使っています。
$(function)() {}) ----- HTMLの読み込みを待って処理する
JavaScriptの場合window.onload
やDOMContentLoaded
で要素を取得できたが、複数の処理を設定するのにaddEventListener
を使うため、クロスブラウザ対応が出来ない弱点があった。
jQueryの場合$(function)() {})
の記述で以下のような挙動が可能になる。
- クロスブラウザで動作する
- 画像のロードなどは待たずに、HTMLの構築が終わった時点で処理を開始する
- 複数の処理を設定できる。
Author And Source
この問題について(jQuery①), 我々は、より多くの情報をここで見つけました https://qiita.com/tsukishimaao/items/c140a71f8f692c5fe021著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .