我试图在点击按钮时将变量传递给隐藏的表单输入:
$('#convertToButton').click(function() {
$("#currencySelectValue").val($("#currencySelect").val());
$("#currencyValue").val($("#fromCurrencyValue").val());
$.post("php/convertToForm.php", $("#convertToForm").serialize(), function(data){
$('#toCurrencyValue').val(data);
});
});
$('#convertFromButton').click(function() {
$("#currencySelectValue").val($("#currencySelect").val());
$("#btcValueForm").val($("#btcValue").val());
$.post("php/convertFromForm.php", $("#convertFromForm").serialize(), function(data){
$('#fromCurrencyValue').val(data);
});
});
在第一个单击处理程序中,一切都正常通过。在第二次单击处理程序中,表单未显示为已通过#currencySelectValue
。代码是一样的,所以我不确定问题出在哪里。
以下是表格:
<form action="php/convertToForm.php" id="convertToForm">
<input type="hidden" value="<?php echo $last; ?>" name="lastPrice" id="lastPrice"/>
<input type="hidden" name="currencySelectValue" id="currencySelectValue"/>
<input type="hidden" name="currencyValue" id="currencyValue"/>
<!-- get values of the currency selector, and the currency value -->
</form>
<form action="php/convertFromForm.php" id="convertFromForm">
<input type="hidden" value="<?php echo $last; ?>" name="lastPrice" id="lastPrice"/>
<input type="hidden" name="currencySelectValue" id="currencySelectValue"/>
<input type="hidden" name="btcValueForm" id="btcValueForm"/>
<!-- get values of the currency selector, and the BTC value -->
</form>
除了convertFromForm中的#currencySelectValue
之外的所有内容都可以正常传递。有什么帮助吗?
答案 0 :(得分:6)
您应该永远在整个文档中拥有多个具有相同ID的元素。 ID必须是唯一的才能工作。
如果要选择副本或类似部分,请改用类。