I'm writing an address in the database and with ajax I'm looking for it to display to the user. Temporarily, I'm writing it to the input below:
<tr>
<td>Download:</td>
<td><input type="text" name="anexo" id = "anexo" size="60"></td>
</tr>
Ajax returns the correct value of the database, with HTTP and everything:
http://pcn-sig.peccin.local/sig/subsistemas/projeto_testes/projetos/BASE/11.docx
Myquestionis:Howcouldthismakeitahyperlinkordownloadbutton?Itriedbutton,onclick,butIcouldnotrecognizethelink.Thanks
UPDATE
TheAjaxthatloadsthedataisthis:
// Verifica se foi concluído com sucesso e a conexão fechada (readyState=4)
if (xmlreq.readyState == 4) {
// Verifica se o arquivo foi encontrado com sucesso
if (xmlreq.status == 200) {
//Se o retorno foi vazio do Oracle
if (xmlreq.responseText == "") {
document.getElementById("projeto").focus();
alert("Não existe o projeto informado!");
ids.forEach(function (id) {
document.getElementById(id).value = '';
document.getElementById("projeto").value = '';
});
//Se encontrou dados
} else {
//Aqui recebe os dados do processa.php, abre e aplica nos campos desejados
var dados = JSON.parse(xmlreq.responseText);
// função para preencher os campos com os dados
ids.forEach(function (id) {
document.getElementById(id).value = dados[id];
});
}
} else {
result.innerHTML = "Erro: " + xmlreq.statusText;
}
}