gpt4 book ai didi

javascript - 在jquery中选择id以字符串开头的元素

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

我有以下 jQuery 序列:

$("button").click(function(){
if ($(this).attr('[id^=facilityName]'))
{
$("#facilityNameRight").text($(this).text());
}
});

我需要 if 语句中的代码仅在按钮具有以“facilityName”开头的 id 时执行,并且我已尝试了编写条件的所有组合。怎么了?

最佳答案

试试这个:在绑定(bind)点击事件时使用 jquery start 和选择器,而不是在 if 条件中检查它。这会将点击事件绑定(bind)到 id 以facilityName 开头的按钮并执行您所需的任务。

$("button[id^=facilityName]").click(function(){
$("#facilityNameRight").text($(this).text());
});

关于javascript - 在jquery中选择id以字符串开头的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36546448/

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