ajax verisi gelmiyor sayfa başındaki html css kodları geliyor.
Yammaya çalıştığım şey dlete işlemi ama önce ajax çalışıyormu diye test etmek istedim ama
ajaxdiv içine veri gelmiyor
console log da urunid verisi geliyor
alert(this.responseText);
yaptığımda ana sayfanın başındaki head içinde ki css kodları geliyor.
<span class="delcontent" id="<?php echo $ozellikad.''.$urunid ?>" onclick="remove_element(this,<?php echo "'".$ozellik_true."','".$urunid."'"?>)">Sil</span>
function remove_element(p,ozellik_true,urunid){ //urunid ozellikid de olabilir
//alert(urunid);
//ajax start
if (urunid == '') {
document.getElementById("ajaxdiv").innerHTML = "";
return;
}else {
if (window.XMLHttpRequest) {
// script for browser version above IE 7 and the other popular browsers (newer browsers)
xmlhttp = new XMLHttpRequest();
} else {
// script for the IE 5 and 6 browsers (older versions)
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
// get the element in which we will use as a placeholder and space for table
document.getElementById("ajaxdiv").innerHTML = this.responseText;
alert(this.responseText);
}
};
xmlhttp.open("GET", "update/home-page-update.php?ozellik_del="+urunid, true);
xmlhttp.send();
}
//ajax end
//var this_el = p.getAttribute("id");
//document.getElementById(this_el).remove();
}
Soru hatalı mı? 👎
Eğer sorunun kurallara aykırı olduğunu düşünüyorsanız lütfen bize bildirin!
Cevaplar (0)
Henüz kimse cevap yazmadı. İlk cevap yazan sen ol!