欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JQuery应用实例学习 —— 13 点击后边框不断变大

程序员文章站 2024-03-25 12:07:34
...

通过操作节点css属性来控制边框不断变大

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<style>
div {
    width: 300px;
    height: 300px;
    border: 1px solid blue;
}
</style>
<body>
    <div onclick="bian();"></div>
</body>
<script src="jquery.js"></script>
<script>
// 边框不断变大
function bian() {
    var w = parseInt($('div').css('width'));
    var h = parseInt($('div').css('height'));
    var b = parseInt($('div').css('borderBottomWidth'));

    $('div').css('width' , w + 10 + 'px');
    $('div').css('height' , h + 10 + 'px');
    $('div').css('borderBottomWidth' , b + 1 + 'px');
}
</script>
</html>

 

上一篇: es 7 jvm内存设置

下一篇: swiper