需要使用简单的JavaScript HTML DOM功能

时间:2017-05-14 15:00:59

标签: javascript html dom

我试图制作一个回调函数, 在我留下输入表格后 - >调用函数来改变文本输入的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()">

2 个答案:

答案 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()">