觸發器(Jquery中的用法)

觸發器是用於觸發某個事件的發生的代碼,指的是Jquery中的用法。

<html>
<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>

相關詞條

熱門詞條

聯絡我們