<html>
<head>
<title></title>
<script type="text/javascript" src="
</head>
<body>
<script type="text/javascript">
$(document)
var array = [
//
/*
for(var index in array) {
$("#btn" + index)
var item = array[index];
alert(item);
});
}*/
// 始終彈出
//
/*
for(var index in array) {
$("#btn" + index)
var item = array[i];
alert(item);
}(index));
}*/
// 立即彈出
//
/*for (var index in array) {
$("#btn" + index)
return function () {
var item = array[i];
alert(item);
};
} (index));
}*/
// 正確執行
//
//
//
for (var index in array) {
$("#btn" + index)
}
function clickHandler(event) {
var index = event
var item = array[index];
alert(item);
}
// 正確執行
// 利用了event
});
</script>
<input type="button" id="btn
<input type="button" id="btn
<input type="button" id="btn
<input type="button" id="btn
</body>
</html>
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20058.html