Können wir mehr als ein Klick-Ereignis in Jquery verwenden als
$(document).ready(function(){
$('#button').click(function(){
...........click(function(){
...........click(function(){
});
$(this).hide();
});
});
Bitte helfen Sie mir
Ich schließe den Code ein, um weniger Platz für den Code zu haben.
$('#togglebutton1').click(function() {
if ($(this).is(':visible')){
$('#bio>div,#heading2,#heading3 ').hide();
$('#bio>div:first').show();
$('p:first').toggle(
function() {
$(this).animate({ 'height': '+=15px' }, '1000', 'linear');
},
function() {
$(this).animate({ 'height': '-=15px' }, '1000', 'swing');
}
);
$(this).val('ShowImage');
}else {
$(' #bio > div,#heading2,#heading3 ').show();
$(this).val('HideImage');
}
});
$('#bio h3').click(function() {
$(this).next().animate({ 'height': 'toggle' }, 'slow', 'easeOutBounce'); });
});