gpt4 book ai didi

jquery - 如何访问 HTML 元素的 ID

转载 作者:行者123 更新时间:2023-12-01 08:22:21 24 4
gpt4 key购买 nike

如何从“id”而不是“value”中获取值并将其显示在页面上?现在我有了 Holzart:3,我想要 Holzart:Lärche

我有这个功能:

$(document).ready(function() {
$("input[name='holzart']").click(function() {
PobierzWartosc2();
});
});

function PobierzWartosc2() {
$('#aus2').html('');
$("input[name='holzart']").each(function() {
if (this.checked == true) {
$('#aus2').append('Holzart:'+ $(this).val()) }
});
}

和这个 HTML:

<tr><td><label>
<input type="radio" name="holzart" value="3" id="Lärche" >Lärche</label></td></tr>

最佳答案

只需使用 this.id 而不是 $(this).val()

但是,ID 是存储数据最差的属性之一,除非它是对象的实际 ID。您可能需要考虑添加 data-something="whatever",然后使用 $(this).data('something')

访问它

关于jquery - 如何访问 HTML 元素的 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6624259/

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