JQuery Useful Attribute Methods

-- JQuery 2012. 7. 20. 18:31
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

<style>

.selected { color:red; }

.highlight { background:yellow; }

</style>

 

<p id="subject" name="world">hello</p>

<p id="content"></p>


<div>

    <ul>

        <li class="g1">list 1</li>

        <li class="g1">list 2</li>

        <li class="g2">list 3</li>

        <li class="g3"><span>list 4</span></li>

    </ul>

</div>


1. subject값을얻기

var subject = $("#subject").text();

 

2.subject name속성값얻기

var name= $("#subject).attr("name");

 

3.content값을설정하기

$("#content").text("world");

 

4.subject name속성값을변경하기

$("#subject").attr("name","helloword");

 

5. 개체에 CSS적용하기

$("#subject").addClass("selected");

$("#content").addClass("highlight");

$("li").eq(2).addClass("selected");

$("li").filter(".g1").addClass("highlight");

$("li").find("span").addClass("selected");


6. 태그p의 id와 innerHTML

var arrtag = $("p");

for(i=0; i<arrtag.length; i++) {

    alert(arrtag[i].id + " " + arrtag[i].tagName + " " + arrtag[i].innerHTML);

}


7. 태그p를 클릭했을 때

$("p").click(function() {

    alert("click");

});



기타 유용한 Attribute Method정리


Useful Attribute Methods:

Following table lists down few useful methods which you can use to manipulate attributes and properties:

MethodsDescription
attr( properties )Set a key/value object as properties to all matched elements.
attr( key, fn )Set a single property to a computed value, on all matched elements.
removeAttr( name )Remove an attribute from each of the matched elements.
hasClass( class )Returns true if the specified class is present on at least one of the set of matched elements.
removeClass( class )Removes all or the specified class(es) from the set of matched elements.
toggleClass( class )Adds the specified class if it is not present, removes the specified class if it is present.
html( )Get the html contents (innerHTML) of the first matched element.
html( val )Set the html contents of every matched element.
text( )Get the combined text contents of all matched elements.
text( val )Set the text contents of all matched elements.
val( )Get the input value of the first matched element.
val( val )Set the value attribute of every matched element if it is called on <input> but if it is called on <select> with the passed <option> value then passed option would be selected, if it is called on check box or radio box then all the matching check box and radiobox would be checked.

Similar to above syntax and examples, following examples would give you understanding on using various attribute methods in different situation:

  • $("#myID").attr("custom") : This would return value of attribute custom for the first element matching with ID myID.

  • $("img").attr("alt", "Sample Image"): This sets the alt attribute of all the images to a new value "Sample Image".

  • $("input").attr({ value: "", title: "Please enter a value" }); : Sets the value of all <input> elements to the empty string, as well as sets the title to the string Please enter a value.

  • $("a[href^=http://]").attr("target","_blank"): Selects all links with an href attribute starting with http:// and set its target attribute to _blank

  • $("a").removeAttr("target") : This would remove target attribute of all the links.

  • $("form").submit(function() {$(":submit",this).attr("disabled", "disabled");}); : This would modify the disabled attribute to the value "disabled" while clicking Submit button.

  • $("p:last").hasClass("selected"): This return true if last <p> tag has associated classselected.

  • $("p").text(): Returns string that contains the combined text contents of all matched <p> elements.

  • $("p").text("<i>Hello World</i>"): This would set "<I>Hello World</I>" as text content of the matching <p> elements

  • $("p").html() : This returns the HTML content of the all matching paragraphs.

  • $("div").html("Hello World") : This would set the HTML content of all matching <div> to Hello World.

  • $("input:checkbox:checked").val() : Get the first value from a checked checkbox

  • $("input:radio[name=bar]:checked").val(): Get the first value from a set of radio buttons

  • $("button").val("Hello") : Sets the value attribute of every matched element <button>.

  • $("input").val("on") : This would check all the radio or check box button whose value is "on".

  • $("select").val("Orange") : This would select Orange option in a dropdown box with options Orange, Mango and Banana.

  • $("select").val("Orange", "Mango") : This would select Orange and Mango options in a dropdown box with options Orange, Mango and Banana.

'-- JQuery' 카테고리의 다른 글

jquery datepicker  (0) 2012.07.20
jquery slider  (0) 2012.07.20
jquery tabs  (0) 2012.07.20
jquery accordion  (0) 2012.07.20
jquery UI를 위한 기본골격  (0) 2012.07.20
posted by 어린왕자악꿍