我试图制作一个回调函数, 在我留下输入表格后 - >调用函数来改变文本输入的bg颜色.. 它不起作用。
function makeBig() {
var y = document.getElementById("myText");
y.value = y.value.toUpperCase();
function colorInput(y) {
y.style.background = "yellow";
}
} <input type="text" id="myText" onchange="makeBig()">
答案 0 :(得分:1)
makeBig()函数声明函数 colorInput(y)但从不调用它。变化:
function colorInput(y) {
y.style.background = "yellow";
}
到
y.style.background = "yellow";
答案 1 :(得分:1)
function makeBig() {
var y = document.getElementById("myText");
y.value = y.value.toUpperCase();
y.style.background = "yellow";
}
<input type="text" id="myText" onchange="makeBig()">