[removed].href and window.open () methods in JavaScript

前端 未结 6 836
北海茫月
北海茫月 2020-11-22 10:48

What is the difference between window.location.href and window.open () methods in JavaScript?

6条回答
  •  攒了一身酷
    2020-11-22 11:32

    window.open is a method; you can open new window, and can customize it. window.location.href is just a property of the current window.

提交回复
热议问题