>  기사  >  웹 프론트엔드  >  jquery에서 z-index 값을 수정하는 방법

jquery에서 z-index 값을 수정하는 방법

青灯夜游
青灯夜游원래의
2021-11-16 15:24:433305검색

jquery에서 z-index 값을 수정하는 방법: 1. css() 메서드, 구문 "$(selector).css("z-index","value")" 사용 2. attr() 메서드, 구문 사용 " $(selector).attr("style","z-index:value")".

jquery에서 z-index 값을 수정하는 방법

이 튜토리얼의 운영 환경: 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에서 z-index 값을 수정하는 방법

관련 튜토리얼 추천: jQuery 비디오 튜토리얼

위 내용은 jquery에서 z-index 값을 수정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.