下降我做了你的js代碼
jQuery(document).ready(function($){
$('.my-form .add-box').click(function(){
VARñ一些變化= $('。text-box')。length -1 + 1;
var box_html = $('<p class="text-box"><label for="box' + n + '">Box <span class="box-number">' + n + '</span></label> <input type="text" name="on' + n + '" value="" id="box' + n + '" /> <a href="#" class="remove-box">Remove</a></p>');
box_html.hide();
$('.my-form p.text-box:last').after(box_html);
box_html.fadeIn('slow');
return false;
});
$('.my-form').on('click', '.remove-box', function(){
$(this).parent().css('background-color', '#FF6C6C');
$(this).parent().fadeOut("slow", function() {
$(this).remove();
$('.box-number').each(function(index){
$(本)的.text(索引);
});
});
return false;
}); });
嘿,謝謝。用你的答案。感謝您花時間回覆。 – user273072545345
完全沒有問題;)。如果你需要幫助,請問。 – Patrick2607
絕對會! =)我還有幾個問題要解決,但試圖一步一步來完成。換言之,速度很慢。 – user273072545345