gpt4 book ai didi

javascript - Jquery点击带有键值的元素?

转载 作者:行者123 更新时间:2023-11-28 15:18:04 25 4
gpt4 key购买 nike

如何单击基于数据代码值的单选按钮?

<input name="shipping_method" type="radio" value="freeshipping_freeshipping" id="s_method_freeshipping_freeshipping" class="radio" data-code="Free">

<input name="shipping_method" type="radio" value="freeshipping_freeshipping" id="s_method_freeshipping_freeshipping" class="radio" data-code="Sale">

最佳答案

您可以使用输入属性来执行此操作。

例如,请参阅下面的代码。

$(document).ready(function(){
$("input[data-code = 'Free']").click(function(){
alert("hi");
});
});

DEMO

关于javascript - Jquery点击带有键值的元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32735203/

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