Me suelen utilizar la función siguiente para devolver el URL raíz si alguna vez necesito esto, pero ocurrió preguntar si jQuery tenía una manera "un trazador de líneas" para hacer esto ...¿Tiene jQuery una función incorporada para devolver el rootURL?
function getRootURL()
{
var baseURL = location.href;
var rootURL = baseURL.substring(0, baseURL.indexOf('/', 7));
// if the root url is localhost, don't add the directory as cassani doesn't use it
if (baseURL.indexOf('localhost') == -1)
{
return rootURL + "/AppName/";
} else {
return rootURL + "/";
}
}
Él quiere la ruta de contexto también. – sblundy
está agregando que condicionalmente – meouw
, esto es exactamente lo que estaba buscando;) –