<!--this 是a标签-->
<a href="javascript:void(0)" onclick="javascript:searchBySource(this)" name="tel" >${tel }</a>
<!--this 是window对象-->
<a href="javascript:searchBySource(this)" name="net" >${net }</a>
function searchBySource(obj){
console.info('name:'+obj.name+';value:'+obj.value+';text:'+obj.text);
}