私はxmlhttpオブジェクトにあまり精通しておらず、利用可能なドキュメントにもかかわらず、を取得するのに問題がありresponseText
ます。とても近いですが、次のことがうまくいかない理由を指摘できる人なら誰でも感謝します。send()
それがちょうど死んだ後...:
function fetchgenotype() {
// here's where we use an Ajax function to fetch the allele values without reloading the page.
// Get the index number of the genotype record to retrieve; retrieve it; populate the alleles.
var mndx, sndx = 0;
mndx = $('#marker').val();
if (Study_selected) {
sndx = $('#stylabid').val();
} else {
sndx = $('#pjtlabid').val();
}
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
} else {
// code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
// Recieve the return value, parse and assign to screen form.
var allele_stg = "";
allele_stg = document.getElementById("allele_ary").innerHTML = xmlhttp.responseText;
ary = new Array();
ary = str_getcsv(allele_ary, ',');
$('#allele_1_1').val() = ary[0];
$('#allele_1_2').val() = ary[1];
}
}
xmlhttp.open("GET", "fetchAlleles.php?mndx=" + mndx + "&sndx=" + sndx, true);
xmlhttp.send();
} // end of fetchgenotype