Maison  >  Article  >  interface Web  >  一个JS翻页效果_javascript技巧

一个JS翻页效果_javascript技巧

WBOY
WBOYoriginal
2016-05-16 19:11:12986parcourir

上一页下一页
<script> <BR>var curId = 1; <BR>var maxId = 3; <BR>if (document.location.search) curId = Number(document.location.search.split("?")[1].split("=")[1]); <BR>document.getElementById("pic").src = curId + ".htm"; <BR>function Page(id) <BR>{ <BR> if ( id == 0 ) <BR> curId = Number(document.getElementById("page").value); <BR> else <BR> curId += id; <BR> if ( curId < 1 ) <BR> curId = 1; <BR> if ( curId > maxId ) <BR> curId = maxId; <BR> document.getElementById("pic").src = curId + ".htm"; <BR>} <BR></script>
跳转到第



以上是我对于一个翻页效果的修改,不知道可不可以,大家帮看看

不知道有没有什么实际意义
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn