说说jQuery中易混的地方
一、属性中text和html这两个都是获取文本,而不同点如下:
.text() 获取元素中的内容,包括标签和标签的内容,适用于xml和html中
.html() 获取html中的文本,不能用于xml中,但能用于xhtml中
二、文档内容的插入
内部插入(插入元素的里面):
.append(content) $a.append($b),把b写到a中文本的后面
.appendTo(content) $a.appendTo($b),把a写到b中文本的后面
.prepend(content) $a.prepend($b),把b写到a中文本的前面
.prependTo(content) $a.prependTo($b),把a写到b中文本的前面
三、外部插入(插入到元素的外面):
.after(content) $a.after($b),把b插到a元素的后面
.insertAfter(content) $a.insertAfter($b),把a插到b元素的后面
.befor(content) $a.befor($b),把b插到a的前面
.inserBefor(content) $a.insertBefor($b),把a插到b的前面
最好的学习参考还是API,目前的最新版本是:jQueryAPI-100214.chm,有意者可在www.3gput.com/forum.php下载