[JQUERY] [metodo] .height()

.height() (metodo jQuery) accede, in lettura e scrittura, all’altezza in pixel dell’elemento selezionato.

Sintassi

//GET
$("[selettore]").height(); 
//SET
$("[selettore]").height("[numero pixel]");
parametro descrizione
numero pixel Il numero di pixel da impostare

Esempi

<div id="mioDiv1" style="width:100px; height:100px; background:yellow">div1</div>
<button id="test_height1">GET height Div1</button>
<button id="test_height2">SET height Div1</button>
<script>
$("#test_height1").click(function() {
  alert($("#mioDiv1").height());
});
$("#test_height2").click(function() {
  $("#mioDiv1").height("200");
});
</script>

Contenuti correlati

Fonti esterne

jquery, metodi jquery

Related Articles

0 Comment

Rispondi