Posted on 2007-11-09 10:34
G_G 阅读(312)
评论(0) 编辑 收藏 所属分类:
javascript Framework
学习:
http://visualjquery.com/1.1.2.htmlDOM
Attributes 1.attr(key, value)
$("img").attr("title", "xx");
也是对属性的添加但可以动态
eg: 在每次给title时 动态了开始
<img title="pic" /><img title="pic" /><img title="pic" />
通过$("img").attr("title",
function(index) { return this.title + (i + 1); });
<img title="pic
1" /><img title="pic
2" /><img title="pic
3" />
2. html 内容取、赋值
取 <div><input/></div> ->> $("div").html(); ->> 结果:<input/>
赋 $("div").html("<b>new stuff</b>"); ->><div><b>new stuff</b></div>
通过这 ajax 就很简单了。^_^
Manipulation1.位置调换 after, append、before
$("p").after("<b>Hello</b>"); <p>后 添加 <b>..
$("p").after( $("#foo")[0] ); 把id为foo的标签移动到<p>后
$("input[@name='butt1']").clone().prependTo("form"); //clone in form