我从w3schools找到了这段代码。它有效,但是当我在jsfiddle中运行它时会出现问题。
<input type="text" onfocus="myFunction(this)">
function myFunction(x) {
x.style.background = "yellow";
}
答案 0 :(得分:3)
答案 1 :(得分:0)
使用addEventListener
对我有用。
var input = document.getElementsByTagName("input")[0];
input.addEventListener("focus", function() {
this.style.background = "yellow";
});