我有一个页面,如果您单击某些项目,它会删除其他项目。我想知道是否有可能在按下后退按钮时删除所有已发生的功能,而不是$(document).ready(function(){
我用来启动 jquery 的功能。我试过了:
$(window).on('hashchange',function() {
var hash = location.hash.substring(1);
if($('.container1').css('display') === 'none') {
$('.container').show();
} else if($('.container1').css('display') === 'none') {
$('.container').show();
}
});
虽然那没有用
这是删除元素的小提琴: