How to increase the background color of jquery ul li value

青灯夜游
Release: 2022-05-23 13:46:18
Original
2577 people have browsed it

Two methods: 1. Use css() to set the background attribute, the syntax is "$("ul li").css("background","color value")". 2. Use attr() to add a background style, the syntax is "$("ul li").attr("style","background:color value")".

How to increase the background color of jquery ul li value

The operating environment of this tutorial: windows7 system, jquery1.10.2 version, Dell G3 computer.

Two ways to increase the background color of jquery ul li value:

1. Use css()

css() method returns or sets one or more style properties of the matched element.

You only need to add the background attribute (background-color or background) to the ul li element and set the color value.

<!DOCTYPE html>
<html>

	<head>
		<meta charset="UTF-8">
		<script src="js/jquery-1.10.2.min.js"></script>
		<script>
			$(function () {
            $("button").click(function () {
                $("ul li").css("background","red");
            })
        })
    </script>
	</head>
	<body>
		<ul>
			<li>第1个li元素</li>
			<li>第2个li元素</li>
			<li>第3个li元素</li>
			<li>第4个li元素</li>
			<li>第5个li元素</li>
			<li>第6个li元素</li>
		</ul>
		<button>ul li值增加背景颜色</button>
	</body>
</html>
Copy after login

How to increase the background color of jquery ul li value

2. Use the attr()

attr() method to set or return the attribute value of the selected element.

You only need to set the style attribute to the ul li element to add a background style.

<!DOCTYPE html>
<html>

	<head>
		<meta charset="UTF-8">
		<script src="js/jquery-1.10.2.min.js"></script>
		<script>
			$(function () {
            $("button").click(function () {
                $("ul li").attr("style","background:pink");
            })
        })
    </script>
	</head>
	<body>
		<ul>
			<li>第1个li元素</li>
			<li>第2个li元素</li>
			<li>第3个li元素</li>
			<li>第4个li元素</li>
			<li>第5个li元素</li>
			<li>第6个li元素</li>
		</ul>
		<button>ul li值增加背景颜色</button>
	</body>
</html>
Copy after login

How to increase the background color of jquery ul li value

[Recommended learning: jQuery video tutorial, web front-end video

The above is the detailed content of How to increase the background color of jquery ul li value. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!