Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 datepicker 日历(jQuery 库),当我单击输入文本字段时会填充它。一旦我在日历上选择日期,我就想知道这个输入文本的 ID。
前任。输入文本:
<input type="text" class="add-event-form" id="backup-date-1" name="backup-date-1" />
当我单击此输入时,日历显示为工具提示,假设我在日历上选择了一天。我如何获得身份证backup-date-1?
backup-date-1
谢谢你。
尝试 -
$("input").on("click", function() { alert( $(this).prop("id") ); });
演示