PHP ver gevorderde |
|
nvleeuwen88 schreef: Beste Sitemasters,
Ik hoop dat jullie mij kunnen helpen met het volgende:
Ik heb onderstaand code gemaakt wat ervoor dient te zorgen dat hij de prijs die ik terug krijg netjes in de input field value plaatst. Alleen doet hij dit niet terwijl als ik de regel:
$(this).parent().next().next().children().val('ja');
bovenin de functie zet hij wel ja in de input field stopt.
Dus graag help hierbij.
Ontzettend bedankt.
Plaatscode: 140858
$("#product").change(function ()
{
var iOption = $(this).val();
if( iOption != '' )
{
$.ajax({
type: "POST",
url: "ajax/getProductPrice.php",
data: "pID=" + iOption + "",
dataType: 'json',
success: function(msg)
{
$(this).parent().next().next().children().val(msg);
}
});
}
});
$("#product").change(function () { var iOption = $(this).val(); if( iOption != '' ) { $.ajax({ type: "POST", url: "ajax/getProductPrice.php", data: "pID=" + iOption + "", dataType: 'json', success: function(msg) { $(this).parent().next().next().children().val(msg); } }); } });
Misschien dat dit helpt.. dataType toevoegen is wel net zo handig..
in je phpcode kan je dan PHP.net: json_decode gebruiken, en een response terugsturen met PHP.net: json_encode |