首頁  >  文章  >  web前端  >  jquery怎麼修改z-index值

jquery怎麼修改z-index值

青灯夜游
青灯夜游原創
2021-11-16 15:24:433305瀏覽

jquery修改z-index值的方法:1、用css()方法,語法「$(selector).css("z-index","值")」;2、用attr()方法,語法“$(selector).attr("style","z-index:值")”。

jquery怎麼修改z-index值

本教學操作環境:windows7系統、jquery1.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