我正在学习JS,并且我有一个函数以事件(e)作为参数 现在我可以使用e.target访问目标,但是现在我想查看e.target.style(在IN MDN PAGE中)所有不同的样式属性,但是找不到页面。有人可以帮我找到页面吗?
答案 0 :(得分:0)
您可以通过在控制台中登录event
,然后找到target
键来进行检查。
或者,您也可以使用window.getComputedStyle
function getAllProps(e) {
console.log(e)
}
<button type='button' onclick='getAllProps(event)'>Click</button>