jquery使用8
5595 ワード
結果:
あなたの好きな果物
wapAll()
$(“strong”).wrap(“”);
1
<b><strong title=” ”> </strong></b>
2
<b><strong title=” ”> </strong></b>
3
<b><strong title=” ”> </strong></b>
$(“strong”).wrapAll(“”);
1
<b>
2
<strong title=” ”> </strong>
3
<strong title=” ”> </strong>
4
<strong title=” ”> </strong>
5
</b>
結果:
<あなたの好きな果物
要素のプロパティtitleを取得する場合は、attr()メソッドにパラメータ、すなわちプロパティ名を渡すだけです.
var para = $(“p”);
var p_txt = para.attr(“titile”);//
要素ノードのプロパティを取得するtitle
$(“p”).attr(“title”,”your title”);//個々の属性値の設定
$(“p”).attr({“title”: ”your title”,”name”: ”test”});
$(“p”).removeAttr(“title”);//
要素の属性titleを削除
要素のclassを取得
$(“p”).attr(“class”,”high”);//
要素のclassを「high」に設定
1
$("input:eq(2)").click(function()
{
2
$("p").addClass("another"); // <p> "another"
3
}
);
$(“p”).removeClass(“high”)';//
要素の値が「high」のclassを除去
$(“p”).removeClass(“high another”)';//複数のスタイルの削除
1
$("#toggleBtn").toggle(function()
{
2
//
3
}
,function()
{
4
//
5
}
)
繰り返しスタイルを切り替え
$(“p”).toggleClass(“another”);//クラス名「another」を繰り返す
$(“p”).hasClass(“another”);
1
var p_html = $("p").html(); // <p> HTML
2
alert(p_html); // <p> HTML
3
$("p").html("<strong> </strong>"); // <p> HTML
1
<p title=" "><strong> </strong></p>
2
3
var p_text = $("p").text(); // <p>
4
alert(p_text); // ( )
1
$("#address").focus(function()
{
2
var txt_value = $(this).val();
3
if(txt_value == " "){
4
$(this).val("");
5
}
6
});
2番目のドロップダウン・ボックスが選択されました
$(“#single”).val(“choose two option”);
複数のオプションを選択
$(“#multiple”).val([“first option”,”second option”]);
複数選択ボックスとラジオボックスも使用可能
$(“:checkbox”).val([“check2”,”check1”]);
$(“:radio”).val([“radio”]);