gpt4 book ai didi

javascript - jQuery回调函数中匹配到的捕获类

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

我正在尝试访问由回调函数中的 jQuery 选择器匹配的类。例如,如果我有以下 HTML,

<p class="someclass sorted-1 anotherclass">test</p>

我想匹配这个元素并得到 sorted-1 类名。值 1 是任意的。像下面这样的东西。 getMatchedClass() 是伪代码。我以为我可以从 $(this) 中获取值,但我没有看到它。

$('[class*=sorted-]').on('click', function() {
var className = getMatchedClass();
console.log(className); // should output 'sorted-1'
});

有人知道这是否可行吗?我很难想出搜索词。我一直在选择的值上得到结果,这不是我想要的。

谢谢

更新

根据@maheer-ali 的回答,我提出了以下解决方案。

   $(function() {
function column(className) {
const regex = /sorted-([0-9]+)/;
return className.match(regex)[0].replace(regex, '$1');
}
$('[class*=sorted-]').each(function(i, r) {
// col is the dashed number after sorted
// if parsing `sorted-42`, `col` would equal 42
const col = column($(r).context.className);

// Use the `col` value here.
$(r).doSomething({ column: col });
});
});

最佳答案

您可以使用 match() 和正则表达式。并获取结果数组的第一个元素。

$('[class*=sorted-]').on('click', function() {
var className = this.className.match(/sorted-[0-9]+/)[0];
console.log(className); // should output 'sorted-1'
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<p class="someclass sorted-1 anotherclass">test</p>

另一种方法是使用split()startsWith()split() className by "" 并使用 find() 获取元素元素 startsWith 字符串 "sorted-"

$('[class*=sorted-]').on('click', function() {
var className = this.className.split(' ').find(x => x.startsWith('sorted-'))
console.log(className); // should output 'sorted-1'
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<p class="someclass sorted-1 anotherclass">test</p>

关于javascript - jQuery回调函数中匹配到的捕获类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55523460/

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