HTML元素设置焦点的方法
发布时间:2016-12-27 来源:查字典编辑
摘要:
<body
<form action="" method="post" name="form1" >
<input type="text" id="id" />
</form>
</body>
<script> function myfocus() { document.getElementById('id').focus(); } </script>