|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
给你的建议是,有些最常用的语句是需要记住的 比如if for while这些、其他的一般语句你只要知道有这个函数或者有这个功能就可以了,当你用的时候你可以凭借记忆搜索就可以了。js <!--
/**
js后果
作者:sports98
*/
-->
<html>
<head>
<title>让你的回车转为TABLE
</title>
</head>
<script language="javascript">
//input obj Form区
// element 以后元素名
// method 跳转体例
function cgo(obj,element,method){
for(tmpa=0;tmpa<obj.length;tmpa++){
if(obj[tmpa].name==element){
id=tmpa;
}
}
if(method=="prv"){
obj[id-1].focus();
}else{
obj[id+1].focus();
}
}
</script>
<body>
<form name="form1">
<input type="text" value="" name="a1" onkeyup="cgo(this.form,this.name,'')"><!-- 将回车转换为Tab -->
<input type="text" value="" name="a2" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a3" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a4" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a5" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a6" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a7" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a8" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a9" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a10" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a11" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a12" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a13" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a14" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a15" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a16" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a17" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a18" onkeyup="cgo(this.form,this.name,'')">
<input type="text" value="" name="a19" onkeyup="cgo(this.form,this.name,'prv')"><!-- 这个是往回跳的 like Shit+Tab -->
</form>
</body>
</html>
<!--
欠好意思,又灌一帖~:)
--> 我的这套线路可能跟许多学习PHP的爱好者不谋而合,这也算是一个循序渐进的学习过程,不过新手不要看到上面的概括就以为学习蛮简单的,默默在此不得不对您稍微泼一下冷水,任何东西其实都不简单。 |
|