表单的简单练习

简介:
 
 
<! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
< html xmlns ="http://www.w3.org/1999/xhtml" >
< head >
< meta http-equiv ="Content-Type" content ="text/html; charset=utf-8" />
< title > Untitled Document </ title >
< script type ="text/javascript" >
window.onload
= function (){
var oForm = document.forms[ 0 ];
oForm.elements[
0 ].focus();
// alert(oForm.elements[0].value);
var txt1 = document.getElementById( " txt1 " );
// alert(txt1.value.length);
txt1.focus();
txt1.select();
var colInputs = document.getElementsByTagName( ' input ' );
var colTextarea = document.getElementsByTagName( " textarea " );
for ( var i = 0 ;i < colInputs.length; i ++ ){
if (colInputs[i].type == " text " || colInputs[i].type == " password " ){
colInputs[i].onfocus
= function (){ this .select();}
}
}
for ( var i = 0 ;i < colTextarea.length; i ++ ){
colTextarea[i].onfocus
= function (){ this .select();}
}

}
</ script >
</ head >

< body >

< form action ="" method ="get" name ="form1" >
< input type ="text" id ="txt1" name ="text1" value ="用户名" />< br />
< input type ="button" value ="提交" onclick ="document.forms[0].reset()" />< br />
< input type ="image" src ="images/tj.gif" alt ="" />< br />
< input type ="text" name ="" id ="" value ="这是密码" onblur ="alert('Blur')" onchange ="alert('change')" />
< textarea name ="" id ="" onfocus ="this.select()" cols ="30" rows ="10" > 这是爱的呼唤 </ textarea >
</ form >

</ body >
</ html >
复制代码

 

 



本文转自豪情博客园博客,原文链接:http://www.cnblogs.com/jikey/archive/2010/02/03/1662318.html,如需转载请自行联系原作者

目录
相关文章
|
5月前
|
JavaScript 前端开发 PHP
表格表单
表格表单
50 1
|
12月前
|
存储
表单的解析
表单的解析
|
17天前
表单的构成与创建
表单的构成与创建。
10 2
|
4月前
|
Python
表单
【6月更文挑战第3天】表单。
22 1
|
5月前
|
数据可视化 数据挖掘 API
5 款热门的表单设计器推荐
5 款热门的表单设计器推荐
|
5月前
|
移动开发 前端开发 JavaScript
Vue3中表单相关的知识:表单绑定、表单验证、表单处理
Vue3中表单相关的知识:表单绑定、表单验证、表单处理
222 0
|
数据采集 数据安全/隐私保护
什么是表单?
什么是表单?
|
数据安全/隐私保护
表格与表单
表格与表单
80 0
|
安全 数据安全/隐私保护 对象存储
表单的 9 种设计技巧【上】
表单是信息添加、录入的通用形式,合理的表单设计能减轻用户负担。这里码匠提供了一些表单设计的简单技巧。
729 0
表单的 9 种设计技巧【上】