我有一个带有 iframe 的页面。我放置了一个代码,如果用户在 x 秒内不活动(没有 keydown 和 mousemove),页面将重定向到主页。我的问题是代码仅在母页中有效,但没有检测到 iframe 中的 mousemove 和 keydown,因此尽管有活动,但它每次都在 iframe 内重定向。我尝试在 iframe 的 onload 事件中调用一个函数,但这不起作用。这是页面的代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>SAMPLE</title>
<link href="main.css" rel="stylesheet" type="text/css" media="screen" />
<script language="javascript">
function redirect()
{
var timer;
window.onload= document.onmousemove= document.onkeypress= function(){
clearTimeout(timer);
timer=setTimeout(function(){location= 'index.html'},3000);
}
}
</script>
</head>
<body bgcolor="blue" onLoad="redirect();">
<iframe src="http://tplink.teleperformanceusa.com" frameBorder="0" width="100%" height="800px" onLoad="redirect();"></iframe>
...
</body>
</html>
任何帮助,将不胜感激。谢谢!