我使用ajax从 mysql数据库加载一些数据…我的问题是,它获取我想加载的数据的id,我已将HREF值设置为id …所以一个例子是: `a href="16" title="View Story: ssasds"ssasds/a`, 16是我需要的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)它只是说未定义.请尝试帮忙,因为我已经尝试过获取数据的其他方法但是变得混乱.
谢谢
似乎.artefact有两个作为.基于此:$('.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); });