1
爲什麼這項工作:jQuery的循環不工作
var m = 1;
jQuery('#div_sel'+m).click(function() {
jQuery('input[id="sel'+m+'"]').val('blahblah');
});
但不是這樣的:
var m = 1;
while (m < 8) {
jQuery('#div_sel'+m).click(function() {
jQuery('input[id="sel'+m+'"]').val('blahblah');
});
m += 1;
}
通用於循環變量範圍的錯誤。必須有重複 – 2013-04-09 15:33:58
可能的重複[在JavaScript中的奇怪的事情「](http://stackoverflow.com/questions/3150010/strange-things-in-javascript-for) – 2013-04-09 15:36:46