gpt4 book ai didi

javascript - jQuery 动态输入字段不起作用

转载 作者:行者123 更新时间:2023-11-28 19:53:53 25 4
gpt4 key购买 nike

我正在遵循此处的教程(我对其进行了一些修改):code

在 JSFiddle 中,代码工作得很好,但是,在实际页面上,下面的代码不起作用,我一直在努力,但找不到答案:-(所以感谢任何帮助。

<html>

<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="javascript/jquery-2.1.0.min.js"></script>
<script type="text/javascript">

$('.multi-field-wrapper').each(function() {
var $wrapper = $('.multi-fields', this);
$(".add-field", $(this)).click(function(e) {
$('.multi-field:first-child', $wrapper).clone(true).appendTo($wrapper).find('input').val('').focus();
});
$('.multi-field .remove-field', $wrapper).click(function() {
if ($('.multi-field', $wrapper).length > 1)
$(this).parent('.multi-field').remove();
});
});

</script>
<title>AQUATAP - Gestor de Información - Añadir Pedido</title>
</head>

<body>

<form role="form" action="add_order.php" method="POST">
Cliente:
<input type="text" name="cliente" id="buscar">
<br>
<hr />
Fecha de salida:
<br>
<input type="radio" name="salida_pronosticada" value="male">
En el día
<br>
<input type="radio" name="salida_pronosticada" value="male">
2 días
<br>
<input type="radio" name="salida_pronosticada" value="female">
3 días
<br>
<input type="radio" name="salida_pronosticada" value="female">
5 días
<br>
<input type="radio" name="salida_pronosticada" value="female">
1 semana
<br>
<input type="radio" name="salida_pronosticada" value="female">
Otro
<input type="text" name="salida_pronosticada_otro">
días
<br>
<hr />
<label>Stuff y cantidad</label>
<div class="multi-field-wrapper">
<div class="multi-fields">
<div class="multi-field">
<input type="text" class="buscar_prod" name="input_referencia[]">
<input type="text" name="input_cantidad[]">
<button type="button" class="remove-field">
X
</button>
</div>
</div>
<button type="button" class="add-field">
Add field
</button>
<input type="submit" name="guardar" value="Guardar" />
</div>
</form>

</body>

那么好吧...任何帮助都是值得赞赏的。我一直在玩,我想我可能会错过一些东西......比如如果脚本没有启动。

最佳答案

document.ready 中添加您的代码

$(function(){
$('.multi-field-wrapper').each(function() {
var $wrapper = $('.multi-fields', this);
$(".add-field", $(this)).click(function(e) {
$('.multi-field:first-child', $wrapper).clone(true).appendTo($wrapper).find('input').val('').focus();
});
$('.multi-field .remove-field', $wrapper).click(function() {
if ($('.multi-field', $wrapper).length > 1)
$(this).parent('.multi-field').remove();
});
});
});

关于javascript - jQuery 动态输入字段不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22936670/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com