我如何组合多个事件处理程序,
document.getElementById("prix").onchange = function(e)
{
document.getElementById("hhh").innerHTML = this.value*100;
};
document.getElementById("prix").onkeyup = function(e)
{
document.getElementById("hhh").innerHTML = this.value*100;
};
我知道这太可怕了我这样做,那么我该如何结合它们呢?