제이쿼리 Attribute Starts With Selector [name^=”value”]
제이쿼리 Attribute Starts With Selector [name^=”value”]
설명 : 주어진 문자열로 정확하게 시작하는 값으로 지정된 속성을 갖는 요소를 선택합니다.
jQuery ( "[attribute ^ = 'value']")
attribute : 속성 이름.
value : 속성 값. 유효한 식별자 또는 따옴표 붙은 문자열이 될 수 있습니다 .
이 선택기는 체계적인 요소 ID로 HTML을 생성하는 서버 측 프레임 워크에서 생성 된 페이지의 요소를 식별하는 데 유용 할 수 있습니다. 그러나 클래스 선택기를 사용하는 것보다 느려질 수 있으므로 가능한 경우 클래스를 활용하여 유사한 요소를 그룹화하십시오.
예:
속성 이름이 'news'로 시작하고 텍스트를 입력 한 모든 입력을 찾습니다.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>attributeStartsWith demo</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<input name="newsletter">
<input name="milkman">
<input name="newsboy">
<script>
$( "input[name^='news']" ).val( "news here!" );
</script>
</body>
</html>
게시글 목록
| 번호 | 제목 |
|---|---|
| 15819 |
jQuery
제이쿼리 jQuery( ":button" )
|
| 15818 | |
| 15817 | |
| 15816 | |
| 15815 | |
| 15814 | |
| 15813 | |
| 15812 | |
| 15811 | |
| 15810 | |
| 15809 |
jQuery
제이쿼리 .attr (attributeName)
|
| 15808 |
jQuery
제이쿼리 .appendTo( target )
|
| 15807 | |
| 15806 |
jQuery
animated selector
|
| 15805 | |
| 15804 |
jQuery
제이쿼리 andSelf()
|
| 15803 |
jQuery
제이쿼리 all selector
|
| 15802 |
jQuery
제이쿼리 .ajaxSuccess(handler)
|
| 15801 |
jQuery
.ajaxStop(handler )
|
| 15800 |
jQuery
.ajaxStart(handler )
|
| 15799 |
jQuery
.ajaxSend (handler )
|
| 15798 |
jQuery
제이쿼리 .ajaxError (handler)
|
| 15797 |
jQuery
제이쿼리 .ajaxComplete (handler)
|
| 15796 |
jQuery
제이쿼리 .after()
|
| 15792 | |
| 15791 |
jQuery
제이쿼리 .addBack ()
|
| 15790 |
jQuery
제이쿼리 .add (selector)
|
| 15789 | |
| 15788 | |
| 15787 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기