function correlativo(sucursal){
var tipo=document.getElementById('tipo').value;
var correlativo= document.getElementById('correlativo')
var ajax=nuevoAjax();
ajax.open("POST", "../ajax/correlativo_ajax.php", true);
ajax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
ajax.send("tipo="+tipo+"&sucursal="+sucursal);
ajax.onreadystatechange=function()
{
if (ajax.readyState==4)
{
var respuesta=ajax.responseXML;
correlativo.innerHTML=respuesta.getElementsByTagName("correlativo")[0].childNodes[0].data;
}
}
}
function guardarOt(){
//
var sucursal_ciudad = document.getElementById('sucursal_ciudad').value;
correlativo(sucursal_ciudad); //This line i get the ERROR
}
我有这个错误:C,我不知道为什么。Uncaught TypeError: undefined is not a function 当我调用这个函数 correlativo(); 我收到此错误,我不知道为什么;(,请帮助我,我需要很多解决方案