所以,我有两个数字,假设我有97和32。
我需要获得32%的97%,即31.04。
在代码中,我有这些变量
int amountFree = 32;
int percentToGet = 97;
计算特定数字的特定百分比的公式是什么?
虽然我不会总是知道价值观,但并不那么简单。
答案 0 :(得分:0)
试试这个 -
$('#nadwozie').change(function (e) {
if (window.confirm('Czy na pewno chcesz zmienić nadwozie/grafikę pojazdu ?')) {
var url = "raport_zapisanie_danepojazdu.php"; // the script where you handle the form input.
$.ajax({
type: "POST",
url: url,
data: $("#FormRaport").serialize(), // serializes the form's elements.
dataType: "text",
success: function (data) {
window.location.href = "raport.php?id=" + <?php echo $raport[0]['id'];?> +"&nadwozie=" + $(this).val();
},
error: function (request, status, error) {
//alert(request.responseText + status + error);
}
})
;
e.preventDefault(); // avoid to execute the actual submit of the form.
} else {
$("#nadwozie").val(previous);
previous = $(this).val();
}
});
我假设这是一个控制台应用程序,但公式应该与您需要的计算相同。