gpt4 book ai didi

jquery - 使用 jQuery 预填充表单

转载 作者:行者123 更新时间:2023-12-03 22:51:32 26 4
gpt4 key购买 nike

页面上有插件生成的发票金额。我想将其 id 复制到表单字段中以便预先填写它。

<div id="invoicediv">$123.00</div> 

<div id="price"></div>
<br />
<form a`ction="https:/thecart.com" method="post" accept-charset="utf-8">

<label>Donation Amount:</label><br>
$<input id="txtBox" size="3" type="text" name="dollaramount">
<input type="hidden" name="name" value="Donation">
<input type="submit" value="Donate">
</form>

有效的 jQuery:

$('#price').html($('#invoicediv'));

但表单没有:

$('#txtBox').val($('#invoicediv'));​

我还想在美元符号将自身复制到表单之前将其删除。

到目前为止,我在http://jsfiddle.net/yvTNc/24/有以下代码也是如此。

最佳答案

您要在 val() 内复制 jquery 对象,您需要 $('#invoicediv').val().text() ,具体取决于什么它是元素。在这种情况下,您需要 $('#invoicediv').text()

像这样

$('#txtBox').val($('#invoicediv').text());​

关于jquery - 使用 jQuery 预填充表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12439180/

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