Método jQuery - width (val)
Descrição
o width( val ) método define a largura CSS de cada elemento correspondente.
Sintaxe
Aqui está a sintaxe simples para usar este método -
selector.width( val )
Parâmetros
Aqui está a descrição de todos os parâmetros usados por este método -
val- Esta é a largura do elemento. Se nenhuma unidade explícita foi especificada (como 'em' ou '%'), "px" é concatenado ao valor.
Exemplo
A seguir está um exemplo simples mostrando o uso desse método -
<html>
<head>
<title>The jQuery Example</title>
<script type = "text/javascript"
src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
</script>
<script type = "text/javascript" language = "javascript">
$(document).ready(function() {
$("div").click(function () {
var color = $(this).css("background-color");
var width = $(this).height();
$("#result").html("That div is <span>" +color+ "</span>.");
$("#result").css({'color': color, 'background-color':'gray'});
$("#result").width( width );
});
});
</script>
<style>
div { width:60px; height:60px; margin:5px; float:left; }
</style>
</head>
<body>
<p>Click on any square:</p>
<span id = "result"> </span>
<div style = "background-color:blue; height:50px;"></div>
<div style = "background-color:pink;height:30px;"></div>
<div style = "background-color:#123456;height:100px;"></div>
<div style = "background-color:#f11; height:75px;"></div>
</body>
</html>
Isso produzirá o seguinte resultado -
jquery-css.htm