我想检查window.location,如果有“IsReload=True”关键字,我会删除它。例如:这是我的 window.location:
http://localhost/Demo/User/ManagedUsersTab?isReload=True
我想删除 "?isReload=True" 并且不重新加载此页面,只需将其删除。我该怎么做。这是我的片段:
if (window.location.href.indexOf("?isReload=True") > -1) {
window.location.replace('@Url.Action("ManagedUsersTab", "User")');
}
此片段重新加载页面