kayıtların bir listesini görüntüleyen bir sayfa var. Kullanıcı radyo düğmelerini kullanarak miktarı durumunu seçebilirsiniz,
If(isset($_POST['rmr'])) {
//$addtocart = $_POST['rmr'];// ?>
input type="radio" name="rmr" id="payment1" value="30" onclick="updatepayment(this.value)"
input type="radio" name="rmr" id="payment2" value="55" onclick="updatepayment(this.value)"
input type="radio" name="rmr" id="payment4" value="100" onclick="updatepayment(this.value)"
Bundan sonra ben altında sorgu kullanılır
$(document).ready(
function() {
// find the checked input and store it as "currChecked" for the record
$("#finalpayment").data("currChecked",
$(this).find("input:radio:checked")[0]);
// add the click event
$("#finalpayment").click( function(event) {
if ($(event.target).is("input:radio") &&
event.target !== $(this).data("currChecked"))
{
$(this).data("currChecked", event.target);
handleChangeEvent(event);
}
});
});
}
);
update payment(currentvalue)
{
document.getElementById("finalamount").innerHTML=(document.getElementById("totalamount").value*currentvalue);
}
what i actually want when user clicks the button that value should display on the browser but result is null can any one tell the problem else which code i have to follow. have a nice day