js 文本框键盘输入事件

html





    
    
    
    
	


    


js

window.onload = function () {
    AddEvent($("txt"), EventsType1[0], fun1);
};
var fun1 = function () {
    AddEvent(document, EventsType2[0], fun2);
};
var fun2 = function () {
    setTimeout(function () { $("show").innerHTML = $("txt").value; },1); 
};

css



你可能感兴趣的:(web前端)