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.
我正在使用 window.open 在我的 MVC 页面中打开一个子弹出窗口,以便在关闭弹出窗口时我应该刷新我的父 Jquery Grid 而不刷新整个页面是否可能?
您可以使用 reloadGrid 刷新网格,也可以使用 onbeforeunload 事件触发网格刷新,如下面的代码,用您的 ID 和 URL 替换您的网格 ID 和窗口 URL
var myWindow = window.open('your_url') myWindow.onbeforeunload = function(){ $("#your_grid_id").trigger("reloadGrid",[{current:true}]); }