複数のイベントハンドラーを組み合わせるにはどうすればよいですか?
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;
};
私はこれが恐ろしいことを知っています、それで私はどうやってそれらを組み合わせることができますか?