$("#showKey").each(
$(this).click(function(){
alert($(this).attr("value"));
})
);
和
<a id="showKey" href="#" value="{{ customer.key }}">
<span class="icons icon-key"></span>
Show key
</a>
警报给出了未定义的输出,只是“未定义”。我有一个客户列表,点击#showKey 应该会显示被点击客户的密钥。
我的代码有什么问题?