在我的代码历史中,我经常写jquery代码,像这样,在近元素上写事件函数,昨天,我的朋友告诉我,你可以在他们近亲元素上写事件函数,如下代码:
$(document).ready(function() {
// write the event on a's parent
$("#footer").on("click",function(e) {
})
// I often write like this
$("#footer a.first").click(function() {
$('form').submit()
})
//or write like this
$('#footer a').last().bind("click",function() {
$('form')[0].reset()
})
})
我把代码放在了jsfiddle: http: //jsfiddle.net/Jackyhua/5Z9Lr/ 有没有人可以告诉一些商品和例子让我相信真实的?