如何使用jQuery动态设置div元素的宽度
答案:使用 JavaScript width()
方法
您可以使用 jQuery width()
方法动态设置
框的宽度。<div>
width()
方法只是将元素的宽度返回为无单位的像素值。 但是调用 width(value)
方法会设置元素的宽度,其中值可以是字符串(例如 100%、50px、25em、auto 等)或数字。 如果只为该值提供了一个数字,则 jQuery 将其假定为像素单位。 让我们看一个例子来了解它是如何工作的:
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery 设置 DIV 宽度</title>
<style>
.box{
float: left;
background: #f2f2f2;
border: 1px solid #ccc;
}
</style>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$(".set-width-btn").click(function(){
var newWidth = $(".input-width").val();
$(".box").width(newWidth);
});
});
</script>
</head>
<body>
<form>
<input type="text" class="input-width">
<button type="button" class="set-width-btn">设置宽度</button>
<p>在输入框中输入数字(例如 100、200)或数字和单位的组合(例如 100%、200px、50em、auto),然后单击"设置宽度"按钮。</p>
</form>
<br>
<div class="box">This is simple DIV box</div>
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: