【 tulaoshi.com - Web开发 】
IFRAME border=0 style="text-align:center" marginWidth=0 marginHeight=0 src="1.htm" frameBorder=no width=200 scrolling=no height=200 style="border: 1px solid #CCCCCC" id="pic"/IFRAME
a href="javascript:Page(-1)"上一页/aa href="javascript:Page(1)"下一页/a
script language="javascript"
var curId = 1;
var maxId = 3;
if (document.location.search) curId = Number(document.location.search.split("?")[1].split("=")[1]);
document.getElementById("pic").src = curId + ".htm";
function Page(id)
{
if ( id == 0 )
curId = Number(document.getElementById("page").value);
else
curId += id;
if ( curId 1 )
curId = 1;
if ( curId maxId )
curId = maxId;
document.getElementById("pic").src = curId + ".htm";
}
/script
跳转到第
input id="page" type="text" size="5"
页
input type="button" name="Submit" value="GO" onClick="Page(0)"
以上是我对于一个翻页效果的修改,不知道可不可以,大家帮看看
不知道有没有什么实际意义