¿Quieres que te salga el texto al lado del texbox donde tienes el número?
Código Javascript
:
Ver original$(function(){
$('#mas,#menos').click(function(){
$.ajax(
{
url: "buscar_producto.php",
dataType: 'text',
data: {num: $('input[name="cod"]').val()},
success:
function(datos){
$('#producto').html(datos);}
});
});
});
Código HTML:
Ver originalcodigo
<input type="button" class="cambiar" name="menos" id="menos" value="-" style="color:red;height:20px; width:20px" title="" onclick=" *document.getElementById('cod').value = parseInt(document.getElementById('cod').value) - 1"><input name="cod" type="text" id="cod" size="1" value="<?php //obtener un nuevo valor * mysql_connect("localhost", "root","root");
* *mysql_select_db("COPROM");
$sql = "select producto,cod from t_mat having max(cod)";
$lib = mysql_query($sql);
$rs_lib = mysql_fetch_assoc($lib);
$ide_lib_nuevo = $rs_lib['cod'] ;
$producto = *$rs_lib['producto'] ;
echo $ide_lib_nuevo;?>" readonly="">
<span id="producto"><?php echo $producto *?></span>
<input type="button" name="mas" class="cambiar" value="+" id="mas" style="color:red;height:20px; width:20px" onclick=" *document.getElementById('cod').value = parseInt(document.getElementById('cod').value) + 1" title=""> *