所以我有此表单,管理员可以在其中更新所有产品信息和价格,每当他单击“保存”按钮时,我都希望刷新显示所有产品的其他页面,以便更新更改。客户端将看到哪个更新的信息,而不必手动刷新它。我只想尝试一些不同的东西
$("#button").click(function(){
window["http://127.0.0.1:5000/thisdifferentpage"].reload(true);
});
<a href='#' id="button" >Refresh the thisdifferentpage</a>
它不起作用
答案 0 :(得分:0)
单击按钮将刷新页面:
<button id="refresh-button" onclick="reload()">Refresh page</button>