求助:在ASP中关于光标定位在文本框中的问题
在ASP中如何实现一进入网页光标就定位在文本输入框中?
<script language="javascript"> window.onload=Function("document.form.name.focus()"); document.onclick=Function("document.form.name.focus()"); </script> <form name="form"> <input name="name" type="text"> </form>