Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
Lethe schrieb:"Hauptframe" ist kein Standardtarget, sondern nur dein Wissen, welcher Frame "Hauptframe" ist. Also
top.pfad.namehauptframe.location.href
da oft der "hauptframe" in der hierarchie weit oben liegt, ist der pfad (durch die frameset-schachtelungen hindurch) meist klein oder fällt ganz weg, deswegen die "kurzfassung" von comet
im übrigen: SelfHTML ist äußerst nützlich
top.frames[1].location.href=menu.value
Lethe schrieb:____________________________________________________
top.pfad.namehauptframe.location.href < das funktioniert leider nicht
____________________________________________________
merkwürdig, das habe ich jetzt schon einige male gehört, aber bei mir funktioniert das prima. hast du die "name"-parameter in der framesetdeklaration alle gesetzt und korrekt übernommen?
<frame name="Navigationsframe" scrolling="no" noresize target="Hauptframe" src="formulartest.html">
nicht eins zu eins zu übernehmen ist......top.pfad.nameHauptframe.location.href
top.<<pfad>>.<<namehauptframe>>.location.href
Lethe schrieb:ja, die kritik ist berechtigt![]()
trotzdem weist das target in der framedeklaration mitsamt dem merkwürdigen wechselseitigen verweis zumindestens in richtung des verdachts, dass redd noch nachholbedarf in grundlagen-html haben könnte - wenn es nicht einfach nur ein schreibfehler ist.
case "value1":
top.frames[1].location.href=;
break;
case "value2":
top.frames[2].location.href=;
break;
case "value3":
top.frames[3].location.href=;
break;
...
usw.
...
default:
top.frames[x].location.href=;
break;
top.frames[1].location.href=[b]menu.value[/b]
<select name="menu" size="1">
<option value="empty.html" selected><Select></option>
<option value="empty.html">--------------------------</option>
<option value="xy1.html">blabla1</option>
<option value="xy2.html">blabla2</option>
<option value="xy3.html">blabla3</option>
<option value="xy4.html">blabla4</option>
<option value="xy5.html">blabla5</option>
<option value="xy6.html">blabla6</option>
<option value="xy7.html">blabla7</option>
<option value="xy8.html">blabla8</option>
<option value="xy9.html">blabla9</option>
</select>
case "value1":
top.frames[1].location.href=;
break;
case "value2":
top.frames[2].location.href=;
break;
case "value3":
top.frames[3].location.href=;
break;
...
usw.
...
default:
top.frames[x].location.href=;
break;