我試圖做一個簡單的循環在JavaScript/jQuery 每次我點擊NEXT,我希望我增加一次。For循環使用jQuery和JavaScript
但它不工作。當我按下時,沒有任何反應。
<script>
//function to show form
function show_form_field(product_field){
$(product_field).show("slow");
}
$(document).ready(function(){
//start increment with 0, until it is reach 5, and increment by 1
for (var i=0; i < 5 ;i++)
{
//when I click next field, run this function
$("#next_field").click(function(){
// fields are equial to field with id that are incrementing
var fields_box = '#field_'+[i];
show_form_field(fields_box)
})
}
});
</script>
不把這個循環中,使用「這個」 ......對於 – softsdev
$(「#next_field」)。單擊循環意味着綁定點擊功能的5倍.. – Andrew
請出示你的HTML或創建一些小提琴演示 – softsdev