Posted in Javascript onApril 20, 2010
<html> <head> <title>超简单上下翻</title> <script type="text/javascript" src="js/jquery.js"></script> </head> <body> 简单上下翻,函数 <script type="text/javascript"> function UpDown(What) { var aList = $("#tab a"); var oldnode = aList.get(0); /* *获取最后一个元素三种方法 */ newnode = aList[aList.length - 1]; newnode = aList.get(aList.length - 1); newnode = $("#tab a:last"); if (What == "up") return $(oldnode).before(newnode); $(newnode).after(oldnode) } </script> <div id="tab"> <a href='#'> a </a><a href='#'> b </a><a href='#'> c </a><a href='#'> d </a><a href='#'> e </a><a href='#'> f </a></div> <a href='#' onclick="UpDown('up')">上一个</a> <a href='#' onclick="UpDown()">下一个</a> </body> </html>
基于jquery的超简单上下翻
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@