在我的例子中,reload ()不起作用,因为 asp.net 控制行为。因此,为了解决这个问题,我使用了这种方法,尽管看起来似乎是一种解决办法。
self.clear = function () {
//location.reload(true); Doesn't work to IE neither Firefox;
//also, hash tags must be removed or no postback will occur.
window.location.href = window.location.href.replace(/#.*$/, '');
};