gpt4 book ai didi

javascript - Jquery - 检查选择器是否以数字结尾

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

如何检查选择器是否以数字结尾?JS代码:

if(!$(this).val())
{
$('label[for^=image], input[id^=image], input[name=time]').remove();
}

我尝试添加/d/,但它不起作用(

$('label[for^=image' + /d/ +'], ....

)

最佳答案

演示就是您正在寻找的内容:http://jsfiddle.net/8g2WL/

行为:对于 ID 在 label 中以数字结尾的情况,您将看到一条警报。

希望这对您有所帮助,如果我遗漏了什么,请告诉我。

使用正则表达式的示例代码

$('label').each(function(){

if ($(this).attr("id").match(/\d+$/) != null)
alert($(this).attr("id").match(/\d+$/));


});​

html

<label id="foo">hulk</label><br/>

<label id="foo_23">HUlk with number</label><br/>


<label id="foo1">ironman with number </label><br/>

<label id="foo">hulk</label><br/>

关于javascript - Jquery - 检查选择器是否以数字结尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11082657/

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