Estou desenvolvendo um form. onde preciso que um botão puxe os dados dos campos em uma tabelas em um pai e filho (está funcionando) e também liste um uma DIV esses valores dos campos. semelhante a um carrinho de compras. Quando atribuo botões diferentes a essas funções, ambas funcionam porém quando eu atribuo as funções a um mesmo botão ele puxa pro pai e filho, mas não lista da DIV.
BOTÃO:
DIV LISTAR :
NOTAS PREENCHIDAS
PAI E FILHO:
NumeroNota FilialCredito CentroCredito FilialDébito CentroDebito TipoServiço ValorServiçojs: var sequenciaItem = 1;
function AddServico() {
wdkAddChild('servico')
$('#itemnumeroNota' + sequenciaItem).val($('#numeroNota').val()); $('#itemfilialC' + sequenciaItem).val($('#prestadoraCredito').val()); $('#itemcCred' + sequenciaItem).val($('#ccCredito').val()); $('#itemfilialD' + sequenciaItem).val($('#prestadoraDebito').val()); $('#itemcDeb' + sequenciaItem).val($('#ccDebito').val()); $('#tipoServico' + sequenciaItem).val($('#AddTipoServico').val()); $('#valorServico_' + sequenciaItem).val($('#AddValorServico').val());
$('#numeroNota').val(""); $('#prestadoraCredito').val(""); $('#ccCredito').val(""); $('#prestadoraDebito').val(""); $('#ccDebito').val(""); $('#AddTipoServico').val(""); $('#AddValorServico').val("");
sequenciaItem++;
}
function onlynumber(evt) { var theEvent = evt || window.event; var key = theEvent.keyCode || theEvent.which; key = String.fromCharCode( key ); var regex = /^[0-9.]+$/; if( !regex.test(key) ) { theEvent.returnValue = false; if(theEvent.preventDefault) theEvent.preventDefault(); } }
function adicionar(){
let numeroNota = document.getElementById("numeroNota").value; let prestadoraCredito = document.getElementById("prestadoraCredito").value; let ccCredito = document.getElementById("ccCredito").value; let prestadoraDebito = document.getElementById("prestadoraDebito").value; let ccDebito = document.getElementById("ccDebito").value; let AddTipoServico = document.getElementById("AddTipoServico").value; let AddValorServico = document.getElementById("AddValorServico").value;
let list = document.getElementById("listar").innerHTML;
list += "
document.getElementById("listar").innerHTML = list;
document.getElementById("numeroNota").value = null; document.getElementById("prestadoraCredito").value = null; document.getElementById("ccCredito").value = null; document.getElementById("prestadoraDebito").value = null; document.getElementById("ccDebito").value = null; document.getElementById("AddTipoServico").value = null; document.getElementById("AddValorServico").value = null;
}