Questo è un sito di test

page


 
jQuery(function() { $('#message p').empty().append('per ottenere il tuo indice di massa corporea,
inserisci il tuo peso espresso in chilogrammi e la tua altezza espressa in centimetri'); jQuery("#calcolapmi").validate({ rules: { peso: { required: true, number: true }, altezza:{ required: true, number: true } }, messages: { peso: 'inserire peso', altezza: 'inserire altezza' }, errorPlacement: function(error, element) { if ( element.is(':radio') ) error.appendTo( element.parent().next() ); else if ( element.is(':checkbox') ) error.appendTo ( element.parent().next() ); else error.appendTo( element.parent().next() ); }, submitHandler: function(form) { var newUL = $(''+ total +''); var divisione = $("#peso").val()/Math.pow(($('#altezza').val()/100),2) var total = roundTo(divisione,1) $("#valore_indice").empty(); $("#valore_indice").append(''+ total +''); if( total <= 18.5 ) { $('#message p').empty().append('il tuo indice di massa corporea o BMI è '+ total + '. Dunque sei sottopeso'); } else if ( total >= 12.6 && total <= 24.9 ){ $('#message p').empty().append('il tuo indice di massa corporea o BMI è '+ total + '. Dunque il tuo peso è regolare'); } else if ( total >= 25.0 && total <= 29.9 ){ $('#message p').empty().append('il tuo indice di massa corporea o BMI è '+ total + '. Dunque sei in sovrappeso'); } else if ( total >= 30.0 ){ $('#message p').empty().append('il tuo indice di massa corporea o BMI è '+ total + '. Dunque sei obeso'); }else{ alert(total + ' bo'); } } }); function roundTo(value, decimals){ var i = value * Math.pow(10, decimals); i = Math.round(i); return i / Math.pow(10, decimals); } });