摘要:
<html><head><script type="text/javascript" src="/jquery/jquery.js"></script><script type="text/javascript"> $(document).ready(function(){ function ani 阅读全文
摘要:
阅读全文
摘要:
$(function(){// 事件冒泡 $('').bind("click",function(event){ //事件内容 //停止事件冒泡 event.stopPropagation(); })// 默认行为 $("#sub").bind("click",function(event){ // 阅读全文
摘要:
选择第一个到第六个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){} 阅读全文