Well I want to know how I can get the parameters to be done with node.js
but not with html
or javascript
.
localhost / match / 51252134213
localhost / match / PARAMETER
Well I want to know how I can get the parameters to be done with node.js
but not with html
or javascript
.
localhost / match / 51252134213
localhost / match / PARAMETER
If you want to read the last parameter after the "/" you could use this javascript code, tell me if that's what you need.
<script type="text/javascript">
function getparameters01(){
var strURL = window.location.href ;
alert(strURL);
var vParametros = strURL.split('/');
alert(vParametros[vParametros.length-1]);
}
getparameters01();
</script>