dcher·14 ปีที่แล้ว·discussWhat? No they don't, unless you're making the handler in a loop.$( "div" ).click( function() {} );Each div will have the same handler applied, it doesn't make a new one for every div.
$( "div" ).click( function() {} );
Each div will have the same handler applied, it doesn't make a new one for every div.