ajax中执行 window.location.href不跳转
时间: 2023-11-07 10:51:58 浏览: 37
Asp.net开发必备51种代码
执行 `window.location.href` 会导致页面跳转,如果你不想跳转,可以使用 `event.preventDefault()` 方法来阻止默认行为。例如:
```
$("#someBtn").click(function(event) {
event.preventDefault();
window.location.href = "http://www.example.com";
});
```
这样就可以防止页面跳转,但是会执行你设置的 URL 地址的相关操作。
阅读全文