jquery 추가() 메서드


  번역 결과:

append

English [əˈpɛnd]

vt. 기호(이름) 첨부;

jquery 추가() 메서드통사론

기능: append() 메서드는 선택한 요소의 끝(아직 내부)에 지정된 내용을 삽입합니다. Append() 및 AppendTo() 메소드는 동일한 작업을 수행합니다. 차이점은 콘텐츠와 선택기의 위치입니다.

구문: ​​$(selector).append(content)

매개변수:

ParametersDescription
content 필수입니다. 삽입할 콘텐츠를 지정합니다(HTML 태그 포함 가능). 함수를 사용하여 콘텐츠를 추가합니다.

구문: ​​$(selector).append(function(index,html))

매개변수:

ParametersDescription
function(index,html ) 필수의. 삽입할 내용을 반환하는 함수를 지정합니다.
index 선택사항. 선택기의 인덱스 위치를 받습니다.
html 선택사항. 선택기의 현재 HTML을 받습니다.

jquery 추가() 메서드예

<html>
<head>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
    $("p").append(" <b>Hello world!</b>");
  });
});
</script>
</head>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button>在每个 p 元素的结尾添加内容</button>
</body>
</html>
인스턴스 실행 »

온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요

비디오

Q&A