gpt4 book ai didi

javascript - jQuery: .each 如何引用匹配的对象

转载 作者:行者123 更新时间:2023-11-30 07:11:44 24 4
gpt4 key购买 nike

我如何获得对匹配元素的引用? “这个”是不正确的。

例如,我在这里尝试使用元素值进行提醒。

//how do i get this to reference the object it matches.
$("#txtFirstName,#txtLastName,#txtDOB").each(
function() { alert(this.val()); }
);

最佳答案

尝试:

$("#txtFirstName,#txtLastName,#txtDOB").each(
function() { alert( $(this).val() ); }
);

关于javascript - jQuery: .each 如何引用匹配的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2330150/

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