如何使用jQuery设置元素的宽度和高度?

要使用jQuery设置元素的宽度和高度,请在jQuery中使用width()height()

元素的宽度

示例

您可以尝试运行以下代码,以了解如何在jQuery中设置元素的宽度:

<!DOCTYPE html>

<html>

<head>

<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>

<script>

$(document).ready(function(){

    $("#button1").click(function(){

        $("div").width(300);

    });

    $("#button2").click(function(){

        $("div").width(400);

    });

});

</script>

</head>

<body>

<div style="height:150px;width:200px;border:2px solid gray;background-color:lightblue;"></div><br>

<button id="button1">Width of div: 300</button>

<button id="button2">Width of div: 400</button><br>

</body>

</html>

元素的高度

示例

您可以尝试运行以下代码以了解如何在jQuery中设置元素的高度:

<!DOCTYPE html>

<html>

<head>

<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>

<script>

$(document).ready(function(){

    $("#button1").click(function(){

        $("div").height(250);

    });

    $("#button2").click(function(){

        $("div").height(350);

    });

});

</script>

</head>

<body>

<div style="height:150px;width:400px;border:2px solid gray;background-color:lightblue;"></div><br>

<button id="button1">Height of div: 250</button>

<button id="button2">Height of div: 350</button><br>

</body>

</html>

以上是 如何使用jQuery设置元素的宽度和高度? 的全部内容, 来源链接: utcz.com/z/334876.html

回到顶部