- 浏览: 271593 次
- 性别:
- 来自: 武汉
最新评论
-
dwl0410:
我的这种 aciton请求怎么 不行啊。。
<scri ...
jquery加载页面时调用js的方法 -
djinjie945:
谢谢,好使
jquery 遍历 map(callback) -
KAXU:
对的,官网上的。
jquery 控制 insertBefore(content) -
sumaolin:
这是手册上的示例吧
jquery 控制 insertBefore(content) -
KAXU:
black.angel 写道
楼主你是转载的吧,怎么弄都弄不好 ...
AppFuse2.0 初始化
文章列表
contents()
找出匹配元素集合中所有的子节点(包括文本节点),如果集合中元素为‘iframe’则返回该元素的内容
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js&q ...
- 2009-01-08 15:54
- 浏览 3990
- 评论(0)
children([expr])
从当前匹配元素集合中得到各个元素第一层子集集合,形成新的元素集合。返回匹配元素集合
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js&quo ...
- 2008-12-31 16:56
- 浏览 11092
- 评论(0)
add(expr)
对当前匹配元素集合增加新的匹配元素集合‘expr’,形成新的匹配元素集合
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></s ...
- 2008-12-31 16:10
- 浏览 2035
- 评论(0)
slice(start,[end])
从当前匹配元素集合中取出部分元素形成新的元素集合。部分元素从索引‘start’到索引‘end’。‘end’参数可以为空,部分元素将从‘start’取到最后一个元素
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="h ...
- 2008-12-31 14:58
- 浏览 2590
- 评论(0)
not(expr)
从当前匹配元素集合中删除满足‘expr’的匹配元素集合。得到新匹配元素集合
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></ ...
- 2008-12-31 14:45
- 浏览 2177
- 评论(0)
map(callback)
将当前匹配集合中元素通过‘callback’函数处理得到的一串新元素,进行组合成一个新列表(list)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-latest ...
- 2008-12-31 14:40
- 浏览 4480
- 评论(1)
is(expr)
判断现有集合是否属于‘expr’集合中的一部分或是相等。如果是则返回true,否则返回false
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head&g ...
- 2008-12-31 14:16
- 浏览 1313
- 评论(0)
filter(fn)
将匹配元素集合中不满足‘fn函数’匹配的元素集合删除,形成新的元素集合
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></s ...
- 2008-12-26 17:16
- 浏览 1470
- 评论(0)
filter(expr)
将匹配元素集合中不满足‘expr’条件的匹配元素集合删除,形成新的集合
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js">< ...
- 2008-12-26 17:07
- 浏览 1219
- 评论(0)
hasClass(class)
匹配元素集合中至少有一个元素包含特殊样式‘class’,那么就返回‘true’,否则就返回‘false’
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-lat ...
- 2008-12-26 16:10
- 浏览 2800
- 评论(0)
eq(index)
从匹配元素集合中得到索引为‘index’的元素。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
...
- 2008-12-26 15:33
- 浏览 2759
- 评论(0)
val()
返回匹配元素集合中第一个元素value的属性值。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
& ...
- 2008-12-26 14:58
- 浏览 7526
- 评论(0)
text()
从匹配元素集合中得到每个元素的文本信息,并将其合并在一起返回一个String。不能对input元素使用。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js&qu ...
- 2008-12-26 13:42
- 浏览 1083
- 评论(0)
html()
获取匹配元素集合第一个元素的html源码。这个属性不可以在xml文档中使用。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></sc ...
- 2008-12-26 11:23
- 浏览 2707
- 评论(0)
toggleClass(class)
如果匹配元素集合中元素没有使用样式‘class’则对该元素加入样式‘class’;如果已经使用该样式,则从该元素中删除该样式。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery. ...
- 2008-12-24 16:53
- 浏览 5934
- 评论(0)