Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 KendoMobileListView 元素。该列表的每个项目都是一个模板,由几个 html 元素(包含行和单元格的表格)组成。单击一个项目时,我想知道单击了模板的哪个 html 元素。有解决办法吗?
谢谢
哈盖
根据文档,事件数据包含e.target属性,显示被点击(点击)的 DOM 元素。你试过吗?
function onClick(e) { console.log(e.target) };