javascript中onclick 中的this指当前什么东西

2025-04-25 14:46:38
推荐回答(2个)
回答1:

// this 是代表本对象的意思, 如:

Button   // 这个 this 代表的就是这个 button

function func(element) {
    // 可以直接对这个对象进行操作
    element.style.color = 'blue'; 
}

回答2:

this是指在哪个标签中调用即为哪个标签对象例如:

red
则是使当前div的内部文字为红色