标签: javascript
想要通过javascript函数自动调用enter键:
例如:
document.getElementById("sd").focus();//set focus in a text box //then call enter key press event using java script var e= window.event// of type keypress e.keyCode=13; //and execute the manualy created event e.