高手指教!一个动态显示的问题,
<html>
<head>
<title>看到这个从左向右移动的效果嘛?哈哈,不错吧!:)……</title>
<script language=javascript >
var text=document.title
var timerID
function newtext()
{
clearTimeout(timerID)
document.title=text.substring(1,text.length)+text.substring(0,1)
text=document.title.substring(0,text.length)
timerID = setTimeout("newtext()", 100)
}
</script>
</head>
<body onload="newtext()">
<h1 align="center"><font color="#800000"><br>
网页TITLE动起来!</font></h1>
<p align="center">看见浏览器上面的页面标题栏吗?</p>
</body>
</html>
----------------------------
当我把这个页面插入帧结构集时,怎样才能让这页面浏览器上面的动态页面标题栏,显示在帧结构集浏览器上面