Instead, use an object literal to organize and name your handlers and callbacks.

 

// bad
$( document ).ready(function() {
 
$( "#magic" ).click(function( event ) {
$( "#yayeffects" ).slideUp(function() {
// ...
});
});
 
$( "#happiness" ).load( url + " #unicorns", function() {
// ...
});
 
});

 

// BETTER
 
var PI = {
 
onReady: function() {
$( "#magic" ).click( PI.candyMtn );
$( "#happiness" ).load( PI.url + " #unicorns", PI.unicornCb );
},
 
candyMtn: function( event ) {
$( "#yayeffects" ).slideUp( PI.slideCb );
},
 
slideCb: function() { ... },
 
unicornCb: function() { ... }
 
};
 
$(document).ready( PI.onReady );

 

相关文章:

猜你喜欢
  • 2022-12-23
  • 2021-06-22
  • 2021-10-29
相关资源
相似解决方案