Ror*_*ach 1 jquery jsp jquery-ui
我只是想知道是否有可能找到在jsp/html页面上点击的确切元素.我不想为任何特定元素创建任何特殊的点击功能.像Firebug那样的东西.
$(document).click(function(event){
// event.target is the clicked object
});
Run Code Online (Sandbox Code Playgroud)
这将起作用,因为最终点击事件将冒泡到文档级别.
$('body').on('click', '*', function(){
// `this` will refer to the clicked element
})
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
66 次 |
| 最近记录: |