ใช้คำสั่งเปลี่ยนหน้าเฟรม function getSecs() { รีเฟชเปลี่ยนหน้าให้ค่ะแต่ไม่วนลูปให้ค่ะพอ รีเฟชไปถึง f แล้วก็นิ่งถ้าอยากให้วนลูปไม่รู้จะต้องเพิ่มอะไรเข้าไปค่ะ
<script type="text/javascript">
function getSecs() {
var myTime = new Date();
var mySecs1 = ""+(myTime.getTime() - clockStart) / 1000;
mySecs1= mySecs1.substring(0,mySecs1.indexOf("."));
if (mySecs1 == "") { window.open("a","frame1"); }
else if (mySecs1 == "10") { window.open("b","frame1"); }
else if (mySecs1 == "15") { window.open("c","frame1"); }
else if (mySecs1 == "20") { window.open("d","frame1"); }
else if (mySecs1 == "25") { window.open("f","frame1"); }
window.setTimeout('getSecs()',1000);