cosa mi dovrebbe dare questo comando?perche nn mi da niente come risultato..
Codice HTML:
function ciao(str){
var pippo = window.location.search.substring(str);
document.write(pippo);;
}
Codice HTML:
<table>
<tr><th>Input</th><td><input type="text" id="input" size="40" value="www.ciao.it/index.html?code=1"></td></tr>
<tr><th>Calculate</th>
<td style="text-align:center">
<input type="button" onclick="document.getElementById('ciao').value = ciao(document.getElementById('input').value)" value="vai">
<tr><th>Result</th><td><input type="text" id="ciao" size="40"></td></tr>
</table>