博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【转载】jquery的end()方法
阅读量:6648 次
发布时间:2019-06-25

本文共 1335 字,大约阅读时间需要 4 分钟。

<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<
html 
xmlns
="http://www.w3.org/1999/xhtml"
>
<
head
>
    
<
title
>
chainning code
</
title
>
    
<
script 
src
="../scripts/jquery-1.2.3.intellisense.js"
 type
="text/javascript"
></
script
>
    
<
script 
type
="text/javascript"
>
        $(
function
(){
            
//
添加四个按钮
            $(
'
<input type="button" value="click me"/><input type="button" value="triggle click me"/><input type="button" value="detach handler"/><input type="button" value="show/hide text"/>
'
).appendTo($(
'
body
'
));
            
//
找出所有按钮
            $(
'
input[type="button"]
'
)
                .eq(
0
)
//
找到第一个按钮
                    .click(
function
(){
                        alert(
'
you clicked me!
'
);
                    })
                .end().eq(
1
)
//
返回所有按钮,再找到第二个
                    .click(
function
(){
                        $(
'
input[type="button"]:eq(0)
'
).trigger(
'
click
'
);
                    })
                .end().eq(
2
)
//
返回所有按钮,再找到第三个
                    .click(
function
(){
                        $(
'
input[type="button"]:eq(0)
'
).unbind(
'
click
'
);
                    })
                .end().eq(
3
)
//
返回所有按钮,再找到第四个
                    .toggle(
function
(){
                        $(
'
.panel
'
).hide(
'
slow
'
);
                    },
function
(){
                        $(
'
.panel
'
).show(
'
slow
'
);
                    });
        });
    
</
script
>
    
<
style 
type
="text/css"
>
        .panel
        
{
            padding
:
 20px
;
            background-color
:
 #000066
;
            color
:
 #FFFFFF
;
            font-weight
:
 bold
;
            width
:
 200px
;
            height
:
 50px
;
        
}
    
</
style
>
</
head
>
<
body
>
    
<
div 
class
="panel"
>
welcome to jQuery!
</
div
>
</
body
>
</
html
>

转载地址:http://hfuto.baihongyu.com/

你可能感兴趣的文章
sqlserver 中EXEC和sp_executesql使用介绍
查看>>
Javascript- Javascript学习
查看>>
day 5.基本数据类型:字典(dict)
查看>>
python 机器学习之岭回归
查看>>
Centos7通过Docker安装Sentry(哨兵)
查看>>
加入收藏兼容ie和火狐
查看>>
Linux常用的网络命令
查看>>
树莓派蓝牙连接
查看>>
Android 网络编程
查看>>
设计师的视觉设计五项修炼
查看>>
转:: 刺鸟:用python来开发webgame服务端(4)
查看>>
十款被人忽视的堪称神器的软件【纯干货】
查看>>
ZOJ 3596Digit Number(BFS+DP)
查看>>
检测Java程序运行时间的2种方法(高精度的时间[纳秒]与低精度的时间[毫秒])...
查看>>
JAVA基础知识|集合
查看>>
poj 2752 - Seek the Name, Seek the Fame
查看>>
exforce_download() -- 对CI中force_download()增强后的函数(不依赖CI)
查看>>
第七次课后作业
查看>>
Python中创建守护进程
查看>>
TOJ 2703: Cow Digit Game
查看>>