我有一個包含多個表單的頁面,我需要使用相同的JavaScript代碼。 JavaScript代碼將更多輸入字段添加到表單中。該腳本工作正常,但將輸入字段添加到所有表單。我需要它只添加字段到當前正在填寫的表單。到目前爲止,我還沒有運氣。對同一頁上的多個html表單重用JavaScript腳本
這裏是什麼的一種形式是這樣的:
<form>
<div class="price-group">
<div class="price-fields">
<label>Multiple <a class="add-field" href="#"> Add Field</a></label>
<br><input maxlength="7" type="text" name="prices[]" />
</div><!--end form-group price-fields-->
</div><!--end price-group-->
</form>
這裏是我的JavaScript:
$(document).ready(function($){
$('.price-group .add-field').click(function(e){
e.preventDefault();
var n = $('.price-fields').length;
$('.price-group').append('<div class=" price-fields"><input maxlength="7" type="text" name="prices[]" /><a class="remove-field pull-right" href="#">Remove</a></div><!--end form-group-->');
});
$('.price-group').on('click', '.remove-field', function(){
$(this).parent().fadeOut("slow", function() {
$(this).remove();
});
return false;
});
});
我設置的jsfiddle: JsFiddle Link
準確地說我在找什麼,謝謝!我正在嘗試使用「父」代替「最接近」的位置,它只是不適合我。 。 – VixWebSolutions