0
4

1 回答 1

1

你可以做:

aTag.onclick = function (e) 
{
   location.href = 'gallery-2.html?lectName=' + this.id;
};

在您的onclick事件中,this将引用该aTag对象。

于 2013-11-05T17:28:05.827 回答