JQuery In Action 第一章学习笔记

$("table tr:nth-child(even)").addClass("striped");

在一个表的偶数行上加上Class striped。

$("p a")

返回包含在p中的a(link)列表

$("div.notLongForThisWorld").fadeOut();

对所有包含类名为“notLongForThisWorld”的<div>调用fadeout()方法。

$("div.notLongForThisWorld").fadeOut().addClass("removed");

对所有包含类名为“notLongForThisWorld”的<div>调用fadeout()方法,并加上新的CSS Class "removed".

$("#someElement").html("I have added some text to an element");

替换ID为someElement的元素的内容。

$("div.fillMeIn").html("I have added some text to a group of nodes");

对所有CSS Class "fillMeIn"的<div>的内容经行替换。、

$("p:even");

返回所有的偶数<p>元素

$("tr:nth-child(1)");

返回所有table的第一行。

$("body > div");

返回<body>的直接<div>孩子。

$("a[href$=pdf]");

返回所有以pdf结尾的a(link).

$("body > div:has(a)")

返回<body>的所有含有a(link)的直接<div>孩子。

$.trim(someString);

字符串剪辑

$("<p>Hi there!</p>")

新建一个<p>元素

$("<p>Hi there!</p>").insertAfter("#followMe");

新建一个<p>元素,并把它插入ID为"followMe"的元素后。

你可能感兴趣的:(jquery)