jQuery width()、height()

简介: jQuery width()、height()

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .box { width: 100px; height: 100px; margin-top: 10px; border: 1px solid #000; background-color: pink; } </style> <script src="jquery-3.4.1.js"></script> <script> $(function () { // 获取宽度 $('button:eq(0)').click(function () { // 获取到的宽度跟 margin padding border 无关 console.log($('.box').width()); }) // 设置宽度 $('button:eq(1)').click(function () { // $('.box').width('200px'); $('.box').width(200); // 默认px }) // 获取高度 $('button:eq(2)').click(function () { // 获取到的高度跟 margin padding border 无关 console.log($('.box').height()); }) // 设置高度 $('button:eq(3)').click(function () { // $('.box').height('200px'); $('.box').height(200); // 默认px }) }) </script> </head> <body> <button>获取宽度</button> <button>设置宽度</button> <button>获取高度</button> <button>设置高度</button> <div class="box"></div> </body> </html>


  • demo 效果:




相关文章
|
8月前
|
JavaScript
jQuery追加节点方法 和height方法与width方法
jQuery追加节点方法 和height方法与width方法
|
Web App开发 前端开发 JavaScript
|
JavaScript 前端开发
jquery中innerWidth(),outerWidth(),outerWidth(true)和width()的区别
jquery中innerWidth(),outerWidth(),outerWidth(true)和width()的区别 var a = 元素本身的宽度; width() = a; innerWidth() = a+padding; outerWidth() = a+padding+border;...
983 0
|
17天前
jQuery+Slick插件实现游戏人物轮播展示切换源码
jQuery+Slick插件实现游戏人物轮播展示切换源码
33 14
|
1月前
|
JavaScript 前端开发
jQuery和CSS3滑动展开菜单按钮插件
这是一款jQuery和CSS3滑动展开菜单按钮插件。该滑动展开菜单按钮在用户点击主菜单按钮之后,子菜单以滑动的方式依次展开
64 21
|
1月前
|
JavaScript
jquery图片和pdf文件预览插件
EZView.js是一款jquery图片和pdf文件预览插件。EZView.js可以为图片和pdf格式文件生成在线预览效果。支持的文件格式有pdf、jpg、 png、jpeg、gif。
55 16
|
1月前
|
JavaScript
jquery文字动画特效插件animatext
jquery文字动画特效插件animatext
48 9
|
1月前
|
移动开发 JavaScript 前端开发
简单易用的jquery响应式轮播图插件ma5slider
ma5slider是一款简单易用的jquery响应式轮播图插件。该轮播图支持鼠标拖拽,可以通过CSS定制外观,支持无限循环模式,内置水平,垂直和淡入淡出三种轮播图过渡动画效果。
|
1月前
|
JavaScript
简洁实用的jQuery进度条插件
这是一款简洁实用的jQuery进度条插件。该插件使用简单,通过在页面中放置指定的HTML代码,即可生成带动画效果的进度条。