<tr data-uid="a51a0722-a3ff-4ddb-84c3-3c5d360bf1eb">
<td>
<buttonEml type="button" ng-mousemove="removeEmlMD5()" id="{{dataItem.md5}}">删除</buttonEml>
</td>
</tr>
$scope.removeEmlMD5 = function(){
var id =$(this).attr('id'); //获取当前id值
var link = $(this).parents().parents().attr("data-uid"); //获取tr的data-uid值
console.log("tr的data-uid值"+ link);
console.log("当前id值 " + id);
};