gpt4 book ai didi

javascript - 获取预填充字段的值

转载 作者:行者123 更新时间:2023-11-28 10:08:15 24 4
gpt4 key购买 nike

如果日期已填充,如何获取字段 #id_start_date 的值?

我尝试过这个:

var sd = $("#id_start_date").val();
$("span.start_date").text(sd);

还尝试将其放入 .change() 或 .click() 中,但它不起作用,因为它是由程序而不是手动更改的。

编辑

这是我的 html 的表单部分。

....
<tr>
<th>Start date</th>
<td><input id="id_start_date" type="text" class="datepicker date_field" name="start_date" size="14" /></td>
</tr>
....

有什么想法或建议吗?

史蒂夫

最佳答案

如果该日期在 span 内,那么您应该能够执行此操作

$("#id_start_date span.start_date").text();

查看您刚刚发布的 html,您可以执行此操作

$('#id_start_date').val();

关于javascript - 获取预填充字段的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7894097/

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