2

我在尝试使用 Jquery 甚至使用普通的 java-script 设置隐藏字段时遇到了奇怪的问题

我的 JSP 页面中有 2 个隐藏字段

<input type="hidden" name="firstSelectedPaymentId" id="firstSelectedPaymentId1" value=""/>
<input type="hidden" name="secondSelectedCCPaymentId" id="secondSelectedCCPaymentId" value=""/>

这就是我在 JS 中设置隐藏值的方式

if ($('#firstSelectedPaymentId1').length > 0) {
    $('#firstSelectedPaymentId1').val(response.result.selectedPaymentInfoId);
}

if ($('#secondSelectedCCPaymentId').length > 0) {
   //$('#secondSelectedCCPaymentId').val(response.result.selectedPaymentInfoId);            
  document.getElementById('secondSelectedCCPaymentId').value=response.result.selectedPaymentInfoId;
}

对于第一种情况,它工作正常,但对于secondSelectedCCPaymentId,它没有在隐藏字段中设置任何值。

我已经检查了我的 JSP 并且没有具有相同 id 的字段,另外如果我尝试

alert($('#secondSelectedCCPaymentId').val());

我可以在警报框中看到值,例如5466565665666. response.result.selectedPaymentInfoId是系统生成的值,它是由我已经验证过的系统生成的。我不确定我在哪里做错了,或者为什么它没有在隐藏字段中设置值?

4

1 回答 1

-2
if ($('#firstSelectedPaymentId1').length > 0) {
    $('#firstSelectedPaymentId1').text(response.result.selectedPaymentInfoId);
}

if ($('#secondSelectedCCPaymentId').length > 0) {
   //$('#secondSelectedCCPaymentId').text(response.result.selectedPaymentInfoId);            
  document.getElementById('secondSelectedCCPaymentId').value=response.result.selectedPaymentInfoId;
}
于 2013-09-03T12:53:55.157 回答