首頁  >  文章  >  web前端  >  jQuery 屬性選擇器element[herf*='value']使用範例_jquery

jQuery 屬性選擇器element[herf*='value']使用範例_jquery

WBOY
WBOY原創
2016-05-16 17:19:421268瀏覽

一個針對jQuery屬性選擇器的小例子,增加對jQUery屬性選擇器的理解:

複製程式碼 程式碼如下:

;





a{
margin-right :20px;
}
ol{
位置:相對;
寬度:600px;
左邊距:400px;
}
dt{
邊距:10pxx ;
高度:100px;
背景顏色:#EAEAEA;
邊框:3px 橘色點綴;
}
.showMessage{
寬度:380px;
.showMessage{
寬度:380px;
浮動:左;
背景顏色:#D8D8D8;
邊框:1px 紅色虛線;
}
風格>

$(document). ready(function(){
var subject = "";
var describe = "";

//name|="value"
$ ("#attri1").bind ("click",function(){
var topValue=$("#attri1").offset().top;
subject = "屬性包含前綴選擇器[name| ="value"]";
describe = "選擇具有指定屬性的元素,其值等於給定字串或以該字串開頭,後面接著連字符(-)。";
$(" a[hreflang|='en' ]").css("border","3px 綠色點狀");
showMessage(subject,describe,topValue);
});

/ /name*="value"
$("#attri2").bind("click",function(){
var topValue=$("#attri2").offset().top;
subject = "屬性包含選擇器[name*="value"]"
describe = "選擇具有指定屬性且值包含給定子字串的元素。 val( "裡面有男人! " );
showMessage(subject,describe,topValue);
});

//name~=" value"
$("#attri3").bind("click ",function(){
var topValue=$("#attri3").offset().top;
subject = "屬性包含單字選擇器[name~="value"]";
describe = "選擇具有指定屬性的元素,其值包含給定單詞,以空格分隔。";
$( "input[name~='man']" ).val( "man先生在裡面!" );
showMessage(主題、描述、topValue);
});

//name$="value"
$("#attri4").bind("click" ,function(){
var topValue=$("#attri4").offset ().top;
subject = "Attribute Ends With Selector [name$="value"]";
describe = "選擇具有以給定字串結尾的指定屬性的元素。區分大小寫。";
$( "input[name$='letter']" ).val( "a letter" );
showMessage(subject,describe,topValue);
});

//name="value"
$("#attri5").bind("click",function(){
var topValue=$("#attri5").offset( ).top;
subject = "屬性等於選擇器[name="value"]";
describe = "選擇具有完全等於某個值的指定屬性的元素。 >
//name$="value"
$("#attri6").bind("click",function(){
var topValue=$("#attri6").offset () .top;
subject = "屬性不等於選擇器[name!="value"]";
describe = "選擇不具有指定屬性的元素,或具有指定屬性但不具有特定值。 ";
$( "input[name!='newsletter']" ).next().append( "; 不是newsletter" );
showMessage(主題、描述、topValue )
});

//name$="value"
$("#attri7").bind("click",function(){
var topValue=$( "#attri7").offset ().top;
subject = "屬性以選擇器[name^="value"]";
describe = "選擇具有以給定字串開頭的指定屬性的元素。
//name$="value"
$("#attri8").bind("click",function(){
var topValue=$("#attri8").offset (). top;
subject = "有屬性選擇器[name]"
describe = "選擇具有指定屬性的元素,可以使用任意值。
可以點選有id元素的div";
$( "div[id]" ).one( "click", function() {
var idString = $( this ).text () " = " $( this ).attr( "id" );
$( this ).text( idString )
showMessage (主題,描述,topValue)
});

//name$="value"
$("#attri9").bind("click",function(){
var topValue=$("#attri9").offset ().top ;
subject = "多屬性選擇器[name="value"][name2="value2"]";
describe = "符合與所有指定屬性篩選器相符的元素。"
$( "input[id][name$='man']" ).val( "只有這個" );
showMessage(subject,describe,topValue);


});

function showMessage(subject,describe,topValue){
$("#showMessage").html("" subject " b>
" 說明)
.addClass("showMessage").css("margin-top",topValue).hide().show(1000);
}

腳本>
頭>







    en a>
    en-
    英文;




































    ;

    ;
    名字?
    標籤>

    ;


    值?
    標籤>

    ;


    值?
    標籤>







    ;
    ;
    名稱是電子報

    ;

    沒有名字

    ;

    名稱已接受
















    無ID
;
with id
;
有id



















身體>

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn