[Функция] height(val)
Раздел "CSS"
Функция устанавливает CSS свойство height для каждого подходящего элемента.
val: устанавливаемое CSS свойство 'height' по заданному значению.
Если нет явно заданного размера (например размер в следующих единицах измерения 'em' или '%') переменная будет установлена в пикселях.
Пример:
При нажатии установить свойство height для каждого элемента div в 30 px и изменить цвет текста.
"jQuery"
$("div").one('click', function () {
$(this).height(30)
.css({cursor:"auto", backgroundColor:"green"});
});
"HTML"
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
"CSS"
div { width:50px; height:70px; float:left; margin:5px;
background:rgb(255,140,0); cursor:pointer; }
"Живой пример jQuery"
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link href="http://test-drupal.ru/themes/slyweb/css/jqueryiframe.css"
rel="stylesheet" type="text/css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("div").one('click', function () {
$(this).height(30)
.css({cursor:"auto", backgroundColor:"green"});
});
});
</script>
</head>
<body class="iframe">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</body>
</html>
<style>
div { width:50px; height:70px; float:left; margin:5px;
background:rgb(255,140,0); cursor:pointer; }
</style>
Версия jQuery 1.4.2
Документ создан 2010-08-21