jquery - 获取(此)的 id attr
单击与此类似的锚标记。
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
然后
match[1]
具有数字(如上所示的 3),并且match[2]
具有字符串(如上所示的 aaa);Try this:
then
match[1]
has the digit (3 like above) andmatch[2]
has the string (aaa like above);