标签:art script clear home hid func hide page settime
$(document).on("click", function() {
	backHomePage();
})
backHomePage();
var backHomePageTimer = null;
//页面无操作在5分钟后返回主界面
function backHomePage() {
	if (!!backHomePageTimer) clearTimeout(backHomePageTimer);
	backHomePageTimer = setTimeout(function() {
		$(‘#modal‘).hide();
		$(‘.novideomain‘).hide();
		$(".videomain").hide();
	}, 15 * 1000);
}
标签:art script clear home hid func hide page settime
原文地址:https://www.cnblogs.com/swtjavaspace/p/13218876.html