Mysql
 sql >> Database >  >> RDS >> Mysql

Javascript invia dati tramite POST nel componente aggiuntivo di Firefox

Jan Hančič ha ragione:il modo migliore è usare XMLHttpRequest.

Ecco un esempio :

var xhr = new XMLHttpRequest();
xhr.open("post", "http://ex.ample.com/file.php", true);
xhr.onreadystatechange = function() {
    if(this.readyState == 4) {
        // Do something with this.responseText
    }
}
xhr.send("var1=val1&var2=val2");

Ci sono molti tutorial e riferimenti sul web su AJAX e l'oggetto xhr.