站内搜索

HTML元素设置焦点的方法_HTML/Xhtml_网页制作

复制代码代码如下:
<body
<form action="" method="post" name="form1" >

<input type="text" id="id" />

</form>

</body>

<script> function myfocus() { document.getElementById('id').focus(); } </script>
  • 上一篇:通过html为FLASH加链接的实现代码(div层)_HTML/Xhtml_网页制作
  • 下一篇:disabled与readonly的作用及区别介绍_HTML/Xhtml_网页制作