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 效果:




相关文章
|
6月前
|
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;...
975 0
|
6月前
|
JavaScript
jQuery图片延迟加载插件jQuery.lazyload
jQuery图片延迟加载插件jQuery.lazyload
|
1月前
|
JavaScript
jQuery 树型菜单插件(Treeview)
jQuery 树型菜单插件(Treeview)
59 2
|
5月前
|
设计模式 JavaScript 前端开发
必知的技术知识:jQuery插件开发精品教程,让你的jQuery提升一个台阶
必知的技术知识:jQuery插件开发精品教程,让你的jQuery提升一个台阶
61 1
|
1月前
|
JavaScript 前端开发
jQuery Growl 插件(消息提醒)
jQuery Growl 插件(消息提醒)
41 4
jQuery Growl 插件(消息提醒)
|
1月前
|
存储 JSON JavaScript
jQuery Cookie 插件
jQuery Cookie 插件
40 4
jQuery Cookie 插件
|
11天前
|
JavaScript 定位技术
jQuery鹰眼视图小地图定位预览插件minimap.js
这是一个jQuery小地图定位预览视图,默认左侧是页面主要内容,minimap.js的好处就是在它的右侧形成一个快速定位通道,产生一个缩小版的页面,即预览效果,可以点击并快速定位到页面的某个位置。简单实用,欢迎下载!
26 0