Home  >  Article  >  Web Front-end  >  How to change width in jquery

How to change width in jquery

WBOY
WBOYOriginal
2022-04-15 16:24:193427browse

Jquery method to change width: 1. Use "element object.width (changed width value)". This method can set the width of the selected element; 2. Use "element object.css("width ","The changed width value")", the css() method can set the value of the specified css attribute.

How to change width in jquery

The operating environment of this tutorial: windows10 system, jquery3.2.1 version, Dell G3 computer.

How jquery changes width

1. Use the width() method

width() method to set or return the width of the selected element.

When this method is used to return the width, it returns the width of the first matching element.

When this method is used to set the width, then set the width of all matching elements

The syntax is:

Return width:

$(selector).width()

Set the width:

$(selector).width(value)

Use a function to set the width:

$(selector).width(function(index,currentwidth))

The example is as follows:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>123</title>
<script src="js/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("div").width("100px");
});
});
</script>
</head>
<body>
<div style="height:100px;width:300px;padding:10px;margin:3px;border:1px solid blue;background-color:lightblue;"></div><br>
<button>改变div的宽度</button>
</body>
</html>

Output result:

How to change width in jquery

2. Use the css() method with the width attribute

css() method to set or return one or more style attributes of the selected element.

To set the specified CSS property, please use the following syntax:

css("propertyname","value");

The example is as follows:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>123</title>
<script src="js/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("div").css("width","100px");
});
});
</script>
</head>
<body>
<div style="height:100px;width:300px;padding:10px;margin:3px;border:1px solid blue;background-color:lightblue;"></div><br>
<button>显示div的宽度</button>
</body>
</html>

The output result is the same as the above example:

How to change width in jquery

Recommended related video tutorials: jQuery video tutorial

The above is the detailed content of How to change width in jquery. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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
Previous article:What does vh mean in css3Next article:What does vh mean in css3