jquery - 获取(此)的 id attr

发布于 2024-10-25 18:22:28 字数 240 浏览 0 评论 0原文

单击与此类似的锚标记。

<a href="go.php?id=3aaa">Click Me</a>

$(this)[0] 包含类似于 http://localhost/www/go.php?3aaa 的字符串

我希望删除“3”和“aaa” “(值根据单击的内容而变化)转换为它们自己的变量并测试它们的值。

An anchor tag similar to this is clicked.

<a href="go.php?id=3aaa">Click Me</a>

$(this)[0] contains a string similar to http://localhost/www/go.php?3aaa

I wish to strip the "3" and "aaa" (values change according to what is clicked) into their own variables and test for their values.

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

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

发布评论

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

评论(1

万水千山粽是情ミ 2024-11-01 18:22:34

试试这个:

var match = $(this)[0].match(/\?(\d{1,})(\w*)/);

然后 match[1] 具有数字(如上所示的 3),并且 match[2] 具有字符串(如上所示的 aaa);

Try this:

var match = $(this)[0].match(/\?(\d{1,})(\w*)/);

then match[1] has the digit (3 like above) and match[2] has the string (aaa like above);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文