Torna al Thread
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>
Celebrita', Foto, Video e Musica: Donnaperfetta.com
</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta http-equiv="Content-Language" content="it" /><meta name="description" content="Le Foto piu Belle del Web ed il Sexy Campionato delle Celebrita" /><meta name="keywords" content="celebrita foto hq donnaperfetta" /><link rel="icon" href="img/main/favicon.png" /><link rel="stylesheet" type="text/css" href="css/style.css" /><link rel="stylesheet" type="text/css" href="css/style_scroll.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#showDataCommand").click(function() {
$.ajax({
url: "http://www.donnaperfetta.com/ws/dp.asmx/test",
dataType: "json",
type: "GET",
cache: false,
traditional: true,
success: function (response) {
if (response) {
// gestisco il dato
$("#dataContainer").append("<div>" +
"<label>nome</label>" +
"<label>" + response.nome + "</label>" +
"</div>" +
"<div>" +
"<label>cognome</label>" +
"<label>" + response.cognome + "</div>" +
"</div>");
}
},
error: function () {
// gestisci l'errore
}
});
});
});
</script>
</head>
<body>
<input type="button" id="showDataCommand" value="Mostra dati" />
<div id="dataContainer">
<!-- i dati arrivano dalla chiamata ajax ed è il js che ne fa render -->
</div>
</body>
</html>