这可能与PHP和JavaScript? 我可以回显我的锚标签ID并使用jquery onclick事件检索它吗? Echo“a href ='example.con'id ='”。$ row ['userid']。“'example / a”;现在在jquery / javascript我说像锚点标签的onclick我得到的行是什么的ID。如果没有,有人可以给我另一个解决方案
答案 0 :(得分:1)
这应该做你想要的:
$('#myLinkId').click(function() {
var linkId;
linkId = $(this).prop('id');
alert(linkId);
});
此代码:.prop('id');
具体是获取链接ID的内容。
答案 1 :(得分:0)
非jQuery替代方案:
function getId(e){
//IE e.srcElement.href);
//Other e.target.href);
alert(e.srcElement.id);
}
将onclick =“getId(event)”添加到您的锚点。
对于crossbrowser实现,您可以看到这个问题:
How can I make event.srcElement work in Firefox and what does it mean?