aqui esta calcula precio
Código PHP:
function calculaPrecio(a,b){
var importe = document.getElementById('importe');
importe.innerHTML = a * b;
anadir();
}
y recupera descripcion
Código PHP:
function objetoAjax(){
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
function RecuperaDescripcion(IdTabla,Valor,IdCampo,Description,IdValorRegresado){
//donde se mostrará el resultado
//el objetoAjax
divResultado = document.getElementById(IdValorRegresado);
ajax=objetoAjax();
ajax.open("POST", "datospedido.php?Tabla="+IdTabla+"&Valor="+Valor+"&Campo="+IdCampo+"&Description="+Description,true);
ajax.onreadystatechange=function() {
if (ajax.readyState==4) {
//mostrar resultados en esta capa
divResultado.innerHTML = ajax.responseText
}
}
ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
//enviando los valores
ajax.send(IdValorRegresado+"="+Valor);
}
esta raro que no funsione... hasta tube pesadillas....