HTML设置焦点
时间:2014-06-25 10:11:17
收藏:0
阅读:181
<body
<form action="" method="post"
name="form1" >
<input type="text" id="id" />
</form>
</body>
<script> function myfocus() { document.getElementById(‘id‘).focus(); } </script>
评论(0)