Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
function link() {
window.parent.frames["framename"].location.href = "addresse1";
location.href = "addresse2";
}
function link() {
window.parent.frames["framename"].location.href = "addresse1";
window.document.location.href = "addresse2";
}
Original geschrieben von Typohnename
ich war etwas in eile:
PHP:function link() { window.parent.frames["framename"].location.href = "addresse1"; window.document.location.href = "addresse2"; }
function link() {
parent.frames["framename"].location = "addresse1";
document.location = "addresse2";
}
<script language="javascript">
function unternehmen() {
window.parent.frames["oben"].location.href = "../unternehmen/top.html";
window.document.location.href = "unternehmen1.html";
}
function konzept() {
window.parent.frames["oben"].location.href = "../konzept/top.html";
window.document.location.href = "konzept1.html";
}
function referenzen() {
window.parent.frames["oben"].location.href = "../referenzen/top.html";
window.document.location.href = "referenzen1.html";
}
function kontakt() {
window.parent.frames["oben"].location.href = "../kontakt/top.html";
window.document.location.href = "kontakt1.html";
}
</script>
<a href="javascript:function unternehmen()">
<a href="#" onclick="function link() {
parent.frames["framename"].location = "addresse1";
document.location = "addresse2";
}">
...
function navigate( ziel ) {
window.parent.frames["oben"].location.href = "../kontakt/top.html";
window.document.location.href = ziel;
}
</script>
<body>
<a href="#" onClick="navigate('unternehmen1.html')">Unternehmen</a>
<br>
<a href="#" onClick="navigate('konzept1.html')">Konzept</a>
usw...