Vue 点击内容

Vue 如何获取当前点击的内容

例子:

Test

clickTest: function(e){

    console.log(e.target);

    console.log(e.target.innerText);

    console.log(e.target.getAttribute("id"));

}

可直接通过console.log 获得e.target 的内容,查看对应的属性

其中innerText 为 获得span 内的内容

getAttribute 为获取span 属性的值

你可能感兴趣的:(Vue 点击内容)