jquery学习笔记_2

学习: http://visualjquery.com/1.1.2.html
DOM
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 就很简单了。^_^

Manipulation
1.位置调换 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

你可能感兴趣的:(jquery学习笔记_2)