jQuery
文章平均质量分 62
ld513508088
这个作者很懒,什么都没留下…
展开
-
html()方法使用jQuery对象
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml">//为每个列表注册单击事件,弹出列表的内部html$(function(){ $("ul li").click(function(){ //犯了低级错误alert(this.html())原创 2014-05-26 23:22:48 · 1876 阅读 · 0 评论 -
模拟邮箱登录界面(focus,blur)
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml">$(function(){ var $address=$("#address"); var $password=$("#password"); // $address.focus(fun原创 2014-05-27 16:37:29 · 1303 阅读 · 0 评论 -
jQuery 实现交换元素位置(移动节点)
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">3-3-2 // $(function(){ var $one_li = $("ul li:eq(1)"); // 获取节点中第二个元素节点 var $two_li = $("ul li:eq(2)"); // 获取原创 2014-05-26 22:46:14 · 55984 阅读 · 1 评论 -
方法remove,detach,empty的区别
(1)remove删除节点返回删除节点的引用,原创 2014-05-26 23:13:32 · 1060 阅读 · 0 评论 -
jQuery mouseover与mouseenter,mouseout与mouseleave的区别
mouseover与mouseenter 不论鼠标指针穿过被选元素或其子元素,都会触发 mouseover 事件。只有在鼠标指针穿过被选元素时,才会触发 mouseenter 事件。 mouseout与mouseleave不论鼠标指针离开被选元素还是任何子元素,都会触发 mouseout 事件。只有在鼠标指针离开被选元素时,才会触发 mouseleave 事件。转载 2014-05-29 10:47:11 · 697 阅读 · 0 评论