使用jquery从标签中提取id

发布于 2024-12-28 08:05:43 字数 270 浏览 2 评论 0原文

我在 Siebel 应用程序中有一个自动生成的 A 标记,如下所示,

<a href='JavaScript:SWESubmitForm(document.SWEForm2_0,s_5,"s_2_2_16_0","1-DOOYAL")'  tabindex=2997  id='s_2_2_16_0_efl''>

我需要从此标记中提取以下值“1-DOOYAL”。我无法构造 jquery 表达式来执行相同的操作。

有人可以帮忙吗?

I have an automatically generated A tag in Siebel application like given below

<a href='JavaScript:SWESubmitForm(document.SWEForm2_0,s_5,"s_2_2_16_0","1-DOOYAL")'  tabindex=2997  id='s_2_2_16_0_efl''>

I need to extract the following value "1-DOOYAL" from this tag. I am not able to construct the jquery expression to do the same.

Can anybody please help??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

追我者格杀勿论 2025-01-04 08:05:43

这应该可以解决问题:

var split = $(this).prop('href').split('","');

return split[split.length - 1].substr(-2);

This should do the trick:

var split = $(this).prop('href').split('","');

return split[split.length - 1].substr(-2);
剩一世无双 2025-01-04 08:05:43

假设它始终用双引号引起来,位于末尾,并且值中没有逗号或括号。

var href = $("#s_2_2_16_0_efl").attr("href");
var v = href.split(/[",\)]+/);
var dooyal = v[v.length-2];

Assumes that it is always double-quoted, comes at the end, and does not have commas or parens in the value.

var href = $("#s_2_2_16_0_efl").attr("href");
var v = href.split(/[",\)]+/);
var dooyal = v[v.length-2];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文