alny Posted June 19, 2013 at 05:36 PM Report #513875 Posted June 19, 2013 at 05:36 PM (edited) ola. não percebo muito bem de ajax e gostaria que me ajudasse a classificar um determinado filme tenho ai o meu codigo window.onload = function() { document.getElementById('classificar').onsubmit = classificarFilme; }; function classificarFilme(){ var classi = document.getElementById('c1'); var classiFi = document.getElementById('idFil'); $.get('database/OperacoesAluguer.php',{c1: classi.value, idFil:classiFi.value}, function (valor){ alert('classificassao: ' + valor); } .Field(function (){ alert('error'); }) a seguir este é meu html <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title></title> <script type="text/javascript" src="js/JQuery.js"></script> <script type="text/javascript" src="js/ClassificarFilme.js"></script> </head> <body> <input type="hidden" id=" idFil" value="<?php echo $_GET['filmeID'] ?>" /> <select size="1" id="c1"> <option selected value="Cassifique">Cassifique!</option> <option value="1" >1</option> <option value="2" >2</option> <option value="3" >3</option> <option value="4" >4</option> <option value="5" >5</option> <input type="text" id="xx"/> </select> <button id="classificar">classificar</button> </body> </html> Edited June 19, 2013 at 07:57 PM by brunoais geshi
brunoais Posted June 19, 2013 at 08:00 PM Report #513897 Posted June 19, 2013 at 08:00 PM (edited) https://developer.mozilla.org/en-US/docs/AJAX/Getting_Started http://blog.teamtreehouse.com/the-definitive-guide-to-get-vs-post diverte-te Edited June 19, 2013 at 08:01 PM by brunoais "[Os jovens da actual geração]não lêem porque não envolve um telecomando que dê para mirar e atirar, não falam porque a trapalhice é rainha e o calão é rei" autor: thoga31 Life is a genetically transmitted disease, induced by sex, with death rate of 100%.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now