Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这个词和动作有什么区别?
<script> window.location.href = 'index.php'; window.location = 'index.php'; </script>
因为在某些情况下,单击按钮后会有一个毫秒,那就是看到更改页面的方式..那是什么?
window.location.href返回当前页面的位置,同时window.location返回一个 Location 对象,该对象包含有关文档 URL 的信息并提供更改该 URL 的方法。您还可以分配给此属性以加载另一个 URL。
window.location.href
window.location
在这里检查