摘要:
jquery 一般使用形式:$(document).ready(function(){ $("button").click(function(){ $("#test").hide(); }); }); $(“*”) 选择所有元素$(this) 选择当前元素$(“p.intro”) 选项所有class=intro的p元素$(“p#other”) 选项所有id=other的p元素$(“p:first”) 选择第一个p元素$(“ul li:first”) 选择第一个 元素的第一个元素$(“ul li:first-child”) 选择每个 的第一个 元素$(“[ 阅读全文