我希望使用onlick event
获取rel值,而不是使用jquery。我在获取rel值时遇到问题。任何帮助将不胜感激。
echo '<td><a href="#top" onclick="hf(event)" rel='.$row["id"].'></a></td>;
JS:
function hf(e)
{
var getid = $(this).attr('rel');
}
答案 0 :(得分:2)
echo '<td><a href="#top" onclick="hf(this)" rel='.$row["id"].'></a></td>;
你的功能可以是:
function hf(e)
{
var getid = e.rel; // or using jquery by: $(e).attr("rel");
}