이 문서의 예에서는 jquery가 가장 가까운 선택기를 통해 상위 요소를 수정하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
이 코드는 jQuery가 가장 가까운 선택기를 통해 상위 수준 요소를 얻은 다음 해당 text() 콘텐츠를 수정하는 것을 보여줍니다.
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title> www.jb51.net </title> <script type='text/javascript' src='jquery-1.9.1.js'></script> <script type='text/javascript'> //<![CDATA[ $(window).load(function(){ var address = $("#jb51").closest("div"); address.text('www.jb51.net') });//]]> </script> </head> <body> <div id="website"> <div id="jb51"></div> </div> </body> </html>
jquery 선택기와 관련된 더 많은 콘텐츠에 관심이 있는 독자는 이 사이트의 특별 주제인 "jquery 선택기 사용 요약"
을 확인할 수 있습니다.이 기사가 모든 사람의 jQuery 프로그래밍에 도움이 되기를 바랍니다.