var isFrist = false;
var times = 1;
$("#test").click(function() {
if (isFrist) {
times++;
alert(isFrist + ": " + times);
} else {
isFrist = true;
}
});
var isFrist = false;
var times = 1;
$("#test").click(function() {
if (isFrist) {
times++;
alert(isFrist + ": " + times);
} else {
isFrist = true;
}
});