我使用timepicki jquery插件进行简单的文本输入。我能够在我的第一个文本输入上成功使用插件,但是我无法在数组创建的附加输入上使用它,如图所示。
<script>
$(document).ready(function() {
var max_fields = 10; //maximum input boxes allowed
var wrapper = $(".input_fields_wrap"); //Fields wrapper
var add_button = $(".add_field_button"); //Add button ID
var x = 1; //initlal text box count
$('#timepicker').timepicki(); //Call Timepicki plugin for #timepicker ID
$(add_button).click(function(e){ //on add input button click
e.preventDefault();
if(x < max_fields){ //max input box allowed
x++; //text box increment
$(wrapper).append('<div><input type="text" name="timepicker[]"/><a href="#" class="remove_field">Remove</a></div>'); //add input box
}
});
$(wrapper).on("click",".remove_field", function(e){ //user click on remove text
e.preventDefault(); $(this).parent('div').remove(); x--;
})
});
</script>
<html>
Ring Time:
<div class="input_fields_wrap">
<button class="add_field_button">Add More Fields</button>
<div><input type="text" id='timepicker' type='text'name='timepicker[]'"></div>
</div><br><br>
</html>
我的问题是 - 如何启用它以便timepicker输入的所有实例都可以使用timepicker插件?
谢谢!
答案 0 :(得分:1)
有一些应该让它发挥作用的改变
$('.timepicker').timepicki(); //class instead of id
并在您的HTML和javascript中
<input type="text" class="timepicker" name="timepicker[]" />
点击功能中的
$(add_button).click(function(e){
e.preventDefault();
if(x < max_fields){
x++;
$(wrapper).append('<div><input type="text" class="timepicker" name="timepicker[]"/><a href="#" class="remove_field">Remove</a></div>');
}
$('.timepicker').timepicki();
});