我刚开始编码,我知道的不多。我希望有一个按钮,单击该按钮时会出现一个选项下拉菜单,其中包含要选择的数字(1、2、3、4)。So when a number is chosen, for example, 2, then two text fields would be added after the last text field. 这就是我现在所拥有的:
<script type="text/javascript">
$(function(){
var counter = 0;
$('#addinput').click(function(){
$('<input class="search" style="margin-bottom:4px; display:none;" type="search" autofocus="autofocus" name="word' + counter++ + '"/>').appendTo('#inputs').fadeIn(400);
});
$('#button').click(function(){
$('.search').each(function(){
var $this = $(this);
if(!$this.val()){
$this.remove()
}
});
});
})
</script>
谢谢你们!