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




相关文章
|
7月前
|
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;...
977 0
|
7月前
|
JavaScript
jQuery图片延迟加载插件jQuery.lazyload
jQuery图片延迟加载插件jQuery.lazyload
|
2月前
|
JavaScript
jQuery 树型菜单插件(Treeview)
jQuery 树型菜单插件(Treeview)
63 2
|
7天前
|
JavaScript
jQuery实现弹窗消息提示特效插件
这是一个简单的jQuery弹窗消息提示插件,用于网站用户操作提示。包含默认、成功、失败、警告、提示弹窗等不同形式弹出的消息提示效果,轻量简单,欢迎下载!
21 4
|
6月前
|
设计模式 JavaScript 前端开发
必知的技术知识:jQuery插件开发精品教程,让你的jQuery提升一个台阶
必知的技术知识:jQuery插件开发精品教程,让你的jQuery提升一个台阶
65 1
|
2月前
|
JavaScript 前端开发
jQuery Growl 插件(消息提醒)
jQuery Growl 插件(消息提醒)
52 4
jQuery Growl 插件(消息提醒)
|
2月前
|
存储 JSON JavaScript
jQuery Cookie 插件
jQuery Cookie 插件
46 4
jQuery Cookie 插件