Jquery href锚值
我在 aspx 页面中有一个锚链接,如下所示:
<a id="Anchor"class="myAnchor" href="Myproject/Mypage.aspx?myTag=asp">Go</a>
我需要使用 jquery 访问“myTag”值。如何做到这一点?
I am having an anchor link in aspx page like:
<a id="Anchor"class="myAnchor" href="Myproject/Mypage.aspx?myTag=asp">Go</a>
I need to access the "myTag" value using jquery.How to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用以下代码获取url的具体查询参数:
Javascript
这是这个函数的用法:
JQuery
用法:
编辑:我已经编辑了我的答案,还添加了用于获取查询字符串参数的 jquery 代码
You can get the specific query parameter of url by using following code:
Javascript
and here is the usage of this function:
JQuery
Usage:
EDIT: I have editted my answer and also added the jquery code for getting the querystring parameter
http://jsfiddle.net/max6s/
http://jsfiddle.net/max6s/
您可以这样做:
示例: http://jsfiddle.net/B6GYB/
或者不使用 jQuery:
示例: http://jsfiddle.net/B6GYB/1/
You could do this:
Example: http://jsfiddle.net/B6GYB/
Or not using jQuery:
Example: http://jsfiddle.net/B6GYB/1/
要获取链接的 href:
要获取内部的 HTML:
#Anchor
是 CSS 格式选择器,意思是“选择 ID 为“Anchor”的元素”。To get the href of the link:
To get the HTML inside:
#Anchor
is the CSS-format selector that means, "Select the element with the ID 'Anchor'."