gpt4 book ai didi

jquery - 选择 id 以变量字符串开头的子项

转载 作者:行者123 更新时间:2023-12-01 01:01:15 26 4
gpt4 key购买 nike

如何扩展:.children('[id^="_foo"]') 变为:

var blah = 'abc'; // 'abc' is passed dynamically and could be other string
.children('[id^=" (blah) _foo"]')

所以在这种情况下,结果将是:childrenidabc_foo 开头。

最佳答案

你真的很接近,你可以简单地使用字符串连接来实现你想要的:

var blah = 'abc'; // 'abc' is passed dynamically and could be other string
$(selector).children('[id^="' + blah + '_foo"]')

关于jquery - 选择 id 以变量字符串开头的子项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20692922/

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