22/05/2014, 11:16
|
| | Fecha de Ingreso: abril-2006
Mensajes: 23
Antigüedad: 18 años, 7 meses Puntos: 0 | |
javascript split & Hola,
Mi problema es la siguiente función en la que quiero parsear la url
function GetURLParameter(sParam)
{
var sPageURL = window.location.search.substring(1);
var sURLVariables = sPageURL.split('?');
var index = sURLVariables[0].indexOf(sParam);
if(index!= -1){
var sParameterName = sURLVariables[0].substr(index);
var parameter = sParameterName.split('&')[0];
return sParameterName.split('=')[1];
}
else{
return false;
}
}
Pero me devuelve este error:
Error Traced[line: 64] The entity name must immediately follow the '&' in the entity reference.
Que es exactamente esta línea.
Alguien sabe como se puede solucionar?
Gracias |