MySQL interesse |
|
ik heb de volgende code maar op regel 4:
handle_checked_input
zou ik een parameter moeten meegeven, maar dan wert het niet meer, dus zo:
handle_checked_input(wat)
en dan function handle_checked_input(wat)
function check_input(wat,antwoord)
{
http.open('get', 'check_input.php?'+wat+'='+antwoord);
http.onreadystatechange = handle_checked_input;
http.send(null);
}
function handle_checked_input()
{
if(http.readyState == 4 && http.status == 200)
{
if(http.responseText)
{
if(http.responseText == 1)
{
document.getElementById('fldnaam').style.backgroundColor = "#D7331E";
document.getElementById('fldnaam').style.color = "#FFF";
}
else
{
document.getElementById('fldnaam').style.backgroundColor = "#FFF";
document.getElementById('fldnaam').style.color = "#000";
}
}
else
{
document.getElementById('fldnaam').style.backgroundColor = "#FFF";
document.getElementById('fldnaam').style.color = "#000";
}
}
}
function check_input(wat,antwoord) { http.open('get', 'check_input.php?'+wat+'='+antwoord); http.onreadystatechange = handle_checked_input; http.send(null); } function handle_checked_input() { if(http.readyState == 4 && http.status == 200) { if(http.responseText) { if(http.responseText == 1) { document.getElementById('fldnaam').style.backgroundColor = "#D7331E"; document.getElementById('fldnaam').style.color = "#FFF"; } else { document.getElementById('fldnaam').style.backgroundColor = "#FFF"; document.getElementById('fldnaam').style.color = "#000"; } } else { document.getElementById('fldnaam').style.backgroundColor = "#FFF"; document.getElementById('fldnaam').style.color = "#000"; } } }
|