ajax获取锚点标签名称
我有这样的 href:
<a href="images/prevFeb-1.jpg" name="day-1" onclick="swap(this); return false;">
<img src="images/thumbFeb-1.jpg" width="50" height="50" alt="" title="thumbFeb-1.jpg" />
</a>
当用户单击缩略图时,图像会交换。 我想在点击时获得 href 名称。 我会爆炸("-",$hrefName) 并希望获得值“1”
任何想法,非常感谢!
i have a href like this:
<a href="images/prevFeb-1.jpg" name="day-1" onclick="swap(this); return false;">
<img src="images/thumbFeb-1.jpg" width="50" height="50" alt="" title="thumbFeb-1.jpg" />
</a>
when the user clicks on a thumbnail, the images get swap.
i will like to get the href name upon on click.
and i will explode("-",$hrefName)
and like to get the value "1"
any ideas many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是您要找的吗?
有关
getNamedItem()
的更多信息,请访问:http://www.w3schools。 com/DOM/met_nodemap_getnameditem.aspIs this what you're looking for?
More about
getNamedItem()
here: http://www.w3schools.com/DOM/met_nodemap_getnameditem.asp如果您固定了超链接名称,那么最好在链接名称上使用子字符串。
If you have the hyperlink name fixed then better use substring on the name of your link.