在ajax响应中获取href值
谁能指出我在尝试查找其中包含“123456”的标签的 href 属性值时的错误?
$('input').click(function(){
$.ajax({
type : "GET",
url : 'transfer.html',
dataType : "html",
success: function(data) {
alert($(data).filter('a[href*="123456"]').attr('href'));
},
error : function() {
alert("Sorry, The requested property could not be found.");
}
});
});
提前致谢 :)
Can anyone point out my mistake in trying to find the value of a href attribute of tag which contains "123456" within it?
$('input').click(function(){
$.ajax({
type : "GET",
url : 'transfer.html',
dataType : "html",
success: function(data) {
alert($(data).filter('a[href*="123456"]').attr('href'));
},
error : function() {
alert("Sorry, The requested property could not be found.");
}
});
});
Thanks in advance :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我意识到我需要先获取表格,然后“.find”特定的标签 href 值。
就像这样:
谢谢你们的帮助!这是自 Hulu.com 以来最好的网站;)
I realized I needed to get the table first and then ".find" the particular a tag href value.
Like this:
Thanks for helping guys! This is the best website since Hulu.com ;)