我使用ajax从mysql数据库加载一些数据...我的问题是,它获取了我想加载的数据的id,我已将HREF值设置为id ...所以一个例子是:
`<a href="16" title="View Story: ssasds">ssasds</a>`,
16是我需要的id值...我的代码是:
$('.artefact').click(function()
{
var storyId = $('a',this).attr('href');
console.log(storyId);
}
当我检查控制台(firebug)时,它只是说未定义。请尝试帮忙,因为我已经尝试了其他方法来获取数据但是变得混乱。
感谢
答案 0 :(得分:7)
似乎.artefact
有两个a
。基于此:
$('.artefact').click(function () {
var storyId = $('a', this).filter("[href]").attr('href');
console.log(storyId);
});
第二个想法,这看起来更干净:
$('.artefact').click(function () {
var storyId = $(this).find("a[href]").attr('href');
console.log(storyId);
});
答案 1 :(得分:2)
.artefact
是否为链接?如果是,为什么要使用$('a', this)
而不只是$(this)
?
答案 2 :(得分:2)
div元素中有2个链接(查看您提供的代码)。因此,要获得href(如果该链接始终是div中的最后一个,则应使用:
$('.artefact').click(function() {
var storyId = $('a', this).last().attr('href');
console.log(storyId);
});
正如其他人所说,你也缺少了肠胃外症。
答案 3 :(得分:1)
试试这个:
var storyId = $(this).attr('href');
答案 4 :(得分:1)
您需要使用$(this).attr('href')
答案 5 :(得分:1)
是的,右括号错误http://jsfiddle.net/h7HuJ/1/我使用了你给定的HTML代码。
你在DIV中有两个锚,所以你需要指定,选择哪一个。我用了你的班级名字。
答案 6 :(得分:0)
@Neil Stewart:见 - http://jsfiddle.net/Chby2/
您没有将artefact
类添加到链接中,并且您的jQuery代码也缺少右括号:);