摘要:
var time=setInterval(add,2000);//定时器 function add(){ jQuery(".sisi li").first().hide(); jQuery(".sisi li").last().show(); var s =jQuery(".sisi li").fi 阅读全文
摘要:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <script type="text/javascript" src="js/jquery-1.11.1.js" ></script> <script> $( 阅读全文
摘要:
<script type="text/jscript" src="js/jquery-1.11.1.min.js"></script> <script type="text/javascript"> // $(document).ready(function(){ // $("button").cl 阅读全文
摘要:
<head> <meta charset="utf-8" /> <title></title> </head> <style type="text/css"> .divv{ position: relative; width: 400px; height: 220px; margin: 100px 阅读全文
摘要:
body { background:url(http://img3.iqilu.com/data/attachment/forum/201308/21/171204uuemoyup4go3ksum.jpg) } *{margin: 0; padding: 0;} ul{list-style:none 阅读全文
摘要:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <style type="text/css"> .divv{ height: 100px; width:670px; background-color:#52 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title></title> <script> window.onload=function(){ function $(id){ return document.getElementByI 阅读全文
摘要:
DOM 是 Document Object Model(文档对象模型)的缩写。 您能够以不同的方式来访问 HTML 元素: 通过使用 getElementById() 方法 —获取的确定的对象 通过使用 getElementsByTagName() 方法-获取是一个数组 通过使用 getElemen 阅读全文