摘要: <html><head><script type="text/javascript" src="/jquery/jquery.js"></script><script type="text/javascript"> $(document).ready(function(){ function ani 阅读全文
posted @ 2017-08-14 19:54 ThisCall 阅读(933) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-08-14 19:16 ThisCall 阅读(121) 评论(0) 推荐(0) 编辑
摘要: $(function(){// 事件冒泡 $('').bind("click",function(event){ //事件内容 //停止事件冒泡 event.stopPropagation(); })// 默认行为 $("#sub").bind("click",function(event){ // 阅读全文
posted @ 2017-08-14 09:11 ThisCall 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 选择第一个到第六个li元素ul li:nth-child(n+3):not(:nth-child(n+6)){}选择第二个到最后一个ul li:nth-child(2)~li{}选择除了第一个和最后一个ul li:not(:first-child):not(:last-child){} 阅读全文
posted @ 2017-08-14 08:54 ThisCall 阅读(1268) 评论(0) 推荐(0) 编辑