使用jquery从标签中提取id
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可以解决问题:
This should do the trick:
假设它始终用双引号引起来,位于末尾,并且值中没有逗号或括号。
Assumes that it is always double-quoted, comes at the end, and does not have commas or parens in the value.