JavaScript/Location/assign

Aus SELFHTML-Wiki
< JavaScript‎ | Location(Weitergeleitet von Assign)
Wechseln zu: Navigation, Suche

Die Methode Location.assign lädt ein neues Dokument. Sie hat dadurch einen ähnlichen Effekt wie die Eigenschaft href.

Syntax

Location.assign(url);

Anwendungsbeispiel

Beispiel ansehen …
  function weg() {
    location.assign('https://blog.selfhtml.org');
  }


Beachten Sie: Anstelle von location.assign können Sie auch nur location = "http://blog.selfhtml.org"; verwenden.[1]

Weblinks

  1. MDN: Window.location Navigate_to_a_new_page