jquery에서 z-index 값을 수정하는 방법: 1. css() 메서드, 구문 "$(selector).css("z-index","value")" 사용 2. attr() 메서드, 구문 사용 " $(selector).attr("style","z-index:value")".
이 튜토리얼의 운영 환경: Windows 7 시스템, jquery 버전 1.10.2, Dell G3 컴퓨터.
jquery에서는 css() 또는 attr() 메서드를 사용하여 요소의 z-index 값을 수정할 수 있습니다.
css() 메서드는 선택한 요소의 스타일 속성을 하나 이상 설정할 수 있습니다.
attr() 메서드는 선택한 요소의 속성 값을 설정할 수 있습니다.
예:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <style type="text/css"> img { position: absolute; left: 0px; top: 0px; z-index: -1; } </style> <script src="js/jquery-1.10.2.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $("button").click(function() { // $("img").css("z-index","1"); $("img").attr("style","z-index:1;"); }); }); </script> </head> <body> <h1>This is a heading</h1> <img src="img/2.jpg" / alt="jquery에서 z-index 값을 수정하는 방법" > <p>由于图像的 z-index 是 -1,因此它在文本的后面出现。</p><br /><br /><br /><br /><br /><br /> <button id="but1">改变z-index值,让图片在文字前</button> </body> </html>
관련 튜토리얼 추천: jQuery 비디오 튜토리얼
위 내용은 jquery에서 z-index 값을 수정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!