Если нет явно заданного размера (например размер в следующих единицах измерения 'em' или '%') переменная будет установлена в пикселях.
Пример:
Если нет явно заданного размера (например размер в следующих единицах измерения 'em' или '%') переменная будет установлена в пикселях.
Пример:
$("div").one('click', function () { $(this).height(30) .css({cursor:"auto", backgroundColor:"green"}); });
<div></div> <div></div> <div></div> <div></div> <div></div>
div { width:50px; height:70px; float:left; margin:5px; background:rgb(255,140,0); cursor:pointer; }
<!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>