Having http://exemplo.com/diretorio1/documento1.html
the code:
<!DOCTYPE html>
<html>
<head>
<title>Uma página</title>
<base href="http://exemplo.com/diretorio2/" />
<script>
function foo(){
window.location.href= "documento2.html";
}
// Mais Scripts...
</script>
<style>
@import url("estilo2.css");
/* Estilos etc... */
</style>
</head>
<body>
</body>
</html>
The foo
function
<script>
can follow up http://exemplo.com/diretorio2/documento2.html
?
Is the style in <style>
able to import the file http://exemplo.com/diretorio2/estilo2.css
?