div标签添加鼠标事件后有问题,整个页面原始数据都没了,不加事件就有数据,这样写哪里错了?求大神指教

return '

'+(row.noticecontent).substring(0,30)+'...
';

function showData(){
$.ajax({
url:"${ctx}/A514/getData",

dataType:"json",

async:true,
type:"GET",

success:function(JSONDataSet){
//请求成功时处理
console.log(JSONDataSet);
}
});
}

把"data":{}加上试试