私が基本的な jquery チュートリアルで取ったメモを読んだ後、このメモはすべての人に適しているわけではありませんが、良いと思わない場合は読む必要はありません。彼ら。
1, : eq() と nth-child()
以下のコードを見てください:
;スクリプト言語 = JavaScript">
$(function(){
$('#a').click(function(){
alert("A")
})
$(' #b').click(function(e){
alert("B")
e.stopPropagation();//バブリングを防ぎ、「A」を出力しません。これは削除できます。
})
})
9, Hide()show() は最後の表示ステータスを記憶します
<スクリプト言語="JavaScript"> $('# test').toggle(function(){
$('#a').hide();//display : none 、表示がインラインであることを覚えておいてください
$('#b')。 Hide() ;//表示 : なし、表示がブロックであることを覚えておいてください
}, function(){
$('#a').show(); // 表示 : インライン
$('# b' ).show(); //表示 : ブロック
})
})
a
/p>
10, Hide() show() プラス時間パラメータ
LANGUAGE= "JavaScript">
$(function(){
$('#test').toggle(function(){
$('#a').hide(500);/ /表示 : なし
$('#b').hide(500);//表示 : なし
},function(){
$('#a').show(500); // 表示: インライン
$('#b').show(500); //表示 : ブロック
})
})
a
b
a< ;/p>
15: animate() がアニメーション効果を実行する場合、アニメーションは実行順序になります。
a p>
//上記のイベントが順番に実行されます。最初に左を変更し、次に上を変更します
コントラスト:
< ;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN" lang="zh-CN">
<スクリプト src="http:// www.cssrain.cn/demo/JQuery API/jquery-1[1].2.1.pack.js" type="text/javascript">
<スクリプト言語="JavaScript"> ;
$(function(){
$('#test').click(function(){
$('#a').animate({left : "300px" , top : " 300px"} , "遅い" )
})
})
a
a
a
段落 1段落 1
パラグラフ 3 パラグラフ 3 パラグラフ 3 パラグラフ 3
パラグラフ 4 パラグラフ 4 パラグラフ 4
gt;
パラグラフ 5 パラグラフ 5 パラグラフ 5
;
第 7 段落 第 7 段落 第 7 段落
/>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
段落 1 段落 1 段落 1 段落 1
gt;
gt;
gt;
gt;
第 2 段落2 パラグラフ 2 パラグラフ 2
gt;
パラグラフ 3 パラグラフ 3 パラグラフ 3 パラグラフ 3
br/>
第 4 段落 第 4 段落 第 4 段落
第 5 段落 第 5 段落 第 5 段落
gt;
gt;
gt;
gt;
第 6 段落6 パラグラフ 6 パラグラフ 6
gt;
gt;
パラグラフ 7 パラグラフ 7 パラグラフ 7
18、パッケージ化要素:wrap(): ;!DOCTYPE html PUBLIC "-//W3C/ /DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> www. w3.org/1999/xhtml" xml:lang="en" lang="en">
cssrain p> ")
ノードのコピー:
.clone()
ノードの挿入:
.append()
.appendTo()
.prepend()
.prependTo()
.after()
.insertAfter()
.before()
.insertBefore()
ノードの削除:
.remove( )
空のノード:
.empty()
ラップ ノード:
.wrap()
属性の設定
.attr()
属性の削除
.removeAttr()
は、JavaScript の DOM 操作と基本的に同じです。 clone() の違いは、前の例で述べたとおりです。 。
これが最初の 6 章のメモのほぼすべてです。