제이쿼리 jQuery( ":button" )
제이쿼리 jQuery( ":button" )
설명 : 버튼 요소의 모든 요소와 버튼 유형의 요소를 선택합니다.
$( ":button" )유효한 CSS 를 사용 하는 것과 동일한 선택자가 $( "button, input[type='button']" )있습니다
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>button demo</title>
<style>
textarea {
height: 35px;
}
div {
color: red;
}
fieldset {
margin: 0;
padding: 0;
border-width: 0;
}
.marked {
background-color: yellow;
border: 3px red solid;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<form>
<fieldset>
<input type="button" value="Input Button">
<input type="checkbox">
<input type="file">
<input type="hidden">
<input type="image">
<input type="password">
<input type="radio">
<input type="reset">
<input type="submit">
<input type="text">
<select>
<option>Option</option>
</select>
<textarea></textarea>
<button>Button</button>
</fieldset>
</form>
<div></div>
<script>
var input = $( ":button" ).addClass( "marked" );
$( "div" ).text( "For this type jQuery found " + input.length + "." );
// Prevent the form from submitting
$( "form" ).submit(function( event ) {
event.preventDefault();
});
</script>
</body>
</html>
게시판 목록
개발자팁
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4646 | PHP | 8년 전 | 2152 | ||
| 4645 | PHP | 8년 전 | 2142 | ||
| 4644 | PHP | 8년 전 | 1639 | ||
| 4643 | PHP | 8년 전 | 1705 | ||
| 4642 | PHP | 8년 전 | 1814 | ||
| 4641 | PHP | 8년 전 | 1883 | ||
| 4640 | PHP | 8년 전 | 2040 | ||
| 4639 | PHP | 8년 전 | 1694 | ||
| 4638 | PHP | 8년 전 | 1610 | ||
| 4637 | PHP | 8년 전 | 1845 | ||
| 4636 | PHP | 8년 전 | 1564 | ||
| 4635 | Mobile | 8년 전 | 10205 | ||
| 4634 | PHP | 8년 전 | 2131 | ||
| 4633 | PHP | 8년 전 | 1720 | ||
| 4632 | PHP | 8년 전 | 1998 | ||
| 4631 | OS | 8년 전 | 7140 | ||
| 4630 | PHP | 8년 전 | 2034 | ||
| 4629 | PHP | 8년 전 | 2075 | ||
| 4628 | PHP | 8년 전 | 5446 | ||
| 4627 | MySQL | 8년 전 | 4248 | ||
| 4626 | OS |
|
8년 전 | 3098 | |
| 4625 | PHP | 8년 전 | 2319 | ||
| 4624 | PHP | 8년 전 | 2219 | ||
| 4623 | PHP | 8년 전 | 1878 | ||
| 4622 | PHP | 8년 전 | 2282 | ||
| 4621 | PHP | 8년 전 | 2030 | ||
| 4620 | PHP | 8년 전 | 2097 | ||
| 4619 | 기타 | 8년 전 | 3829 | ||
| 4618 | PHP | 8년 전 | 2673 | ||
| 4617 | PHP | 8년 전 | 1871 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기