[removed] redirect to a page?

后端 未结 2 557
粉色の甜心
粉色の甜心 2021-01-18 08:50

how do i use jquery [javascript] to goto another page?

or change the url in the browser urlfield and hit enter?

相关标签:
2条回答
  • 2021-01-18 09:22

    (Plain old javascript)

    window.location = 'http://another-place.com';
    
    0 讨论(0)
  • 2021-01-18 09:30

    nothing to do with jQuery, just this:

    window.location.href = 'whatever.html';
    
    0 讨论(0)
提交回复
热议问题