goToURL()

Type : public method

Support : 0.7

Return : void

  • 해당 URL로 이동.
    같은 창 이동은 "document.location.href" 로 구현되었고, 나머지는 "window.open( url, urlTarget )" 으로 구현 되었다.

Methods

  • goToURL( url, urlTarget ) : voidver 0.7~

    • url : String
      이동할 페이지 url
    • urlTarget : String
      이동할 페이지 urlTarget (기본값 '_self')

Example

$B.net.goToURL( 'main/test.html' );