jQuery④

6661 단어 jQuery

메서드 - jQuery 객체를 처리하는 함수


기술하는 방법은 다음과 같다.
jQueryオブジェクト.メソッド名(引数, 引数, ...);
구체적인 사용 방법은 ↓, 이것.css().html, .attr()이 방법이다.

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<title>jQuery-test02</title>
</head>
<body>

<div id="box" class="content">This is box</div>


<script type="text/javascript">

$(function(){
    // div要素すべての取得
    var $box = $('#box');
    // 要素のCSSを変更
    $box.css('color', 'red');
    // 要素の中身のHTMLを変更
    $box.html('<p>content</p>');
    // 要素のclassNameを取得
    var className = $box.attr('class');
    console.log(className); //=> content
});

</script>

</html>



p라벨이 된거 알아.

메소드 체인---연결 메소드 기술


이 방법들은 한데 연결해서 쓸 수 있다.
또한 변수에 저장하지 않고 갑자기 쓸 수 있다.
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<title>jQuery-test02</title>
</head>
<body>

<div id="box">This is box</div>


<script type="text/javascript">

$(function(){
    // 要素を取得してCSSを変更し、中身のHTMLを変更
    $('#box')
    .css('color', 'red')
    .html('<p>content</p>');
});

</script>

</html>


좋은 웹페이지 즐겨찾기