posts - 165, comments - 198, trackbacks - 0, articles - 1
  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

jquery学习笔记_2

Posted on 2007-11-09 10:34 G_G 阅读(312) 评论(0)  编辑  收藏 所属分类: javascript Framework
学习: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="pic1" /><img title="pic2" /><img title="pic3" />

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


只有注册用户登录后才能发表评论。


网站导航: