设置元素的宽度和高度
-
- .width()设置或者获取元素的宽,获取的是数值类型的值
- .height()设置或者获取元素的高
- 可以写单位也可以不写单位
- 案例如下
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
div{
width: 200px;
height: 100px;
background-color: darkorchid;
}
</style>
<script src="../jquery-1.12.1.js"></script>
<script>
$(function () {
$("#btn").click(function () {
console.log($("#dv").width());
console.log($("#dv").height());
$("#dv").width("600px");
$("#dv").height("600px");
});
});
</script>
</head>
<body>
<input type="button" value="点击" id="btn"/>
<div id="dv"></div>
</body>
</html>
元素left和top的操作
-
* .offset()获取的是对象,可以设置,也可以获取
* .offset({"left":值,"top":值});设置
* offset()方法获取的是一个对象,该对象中有两个属性,left和top
* left和top包含left和margin-left和top和margin-top的值
*
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
*{
margin: 0;
padding: 0;
}
div{
width: 200px;
height: 100px;
background-color: indianred;
position: absolute;
left:100px;
top:200px;
}
</style>
<script src="../jquery-1.12.1.js"></script>
<script>
function getStyle(element,attribute) {
if(window.getComputedStyle){
return window.getComputedStyle(element,null)[attribute];
}else{
return element.currentStyle[attribute];
}
}
$(function () {
$("#btn").click(function () {
$("#dv").offset({"top":200,"left":600});
});
});
</script>
</head>
<body>
<input type="button" value="显示效果" id="btn"/>
<div id="dv"></div>
</body>
</html>
元素卷曲出去的距离
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
div{
width: 300px;
height: 200px;
border: 1px solid red;
overflow: auto;
}
</style>
<script src="../jquery-1.12.1.js"></script>
<script>
$(function () {
$("#btn").click(function () {
console.log($("#dv").scrollTop());
});
$("#dv").scroll(function () {
console.log($(this).scrollTop());
});
});
</script>
</head>
<body>
<input type="button" value="显示效果" id="btn"/>
<div id="dv">
太多的,太重的,太残忍的话;没纠缠,是你的,理由太假;不必如此难堪?
太多的,太重的,太残忍的话;没纠缠,是你的,理由太假;不必如此难堪?
太多的,太重的,太残忍的话;没纠缠,是你的,理由太假;不必如此难堪?
太多的,太重的,太残忍的话;没纠缠,是你的,理由太假;不必如此难堪?
太多的,太重的,太残忍的话;没纠缠,是你的,理由太假;不必如此难堪?
太多的,太重的,太残忍的话;没纠缠,是你的,理由太假;不必如此难堪?
太多的,太重的,太残忍的话;没纠缠,是你的,理由太假;不必如此难堪?
太多的,太重的,太残忍的话;没纠缠,是你的,理由太假;不必如此难堪?
太多的,太重的,太残忍的话;没纠缠,是你的,理由太假;不必如此难堪?
</div>
</body>
</html>