$(function () { var i; for (i = 1; i <= 7; i++) { $("#btn" + i).bind("click", { id: i }, dis); } }); function dis(evt) { alert(evt.data.id); }