手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >ASP.NET jQuery 实例2 (表单中使用回车在TextBox之间向下移动)
ASP.NET jQuery 实例2 (表单中使用回车在TextBox之间向下移动)
摘要:通过下面的代码可以实现这种切换的效果。首先我们来看界面:界面代码:复制代码代码如下:脚本代码:复制代码代码如下:Recipe2$(docum...

通过下面的代码可以实现这种切换的效果。

首先我们来看界面:

ASP.NET jQuery 实例2 (表单中使用回车在TextBox之间向下移动)1

界面代码:

复制代码 代码如下:

<body>

<form id="form1" runat="server">

<div align="center">

<fieldset>

<table cellpadding="3" cellspacing="3" border="0">

<tr>

<td>

<asp:Label ID="lblName" Text="姓名: " runat="server"></asp:Label>

</td>

<td>

<asp:TextBox ID="txtName" Width="200px" runat="server"></asp:TextBox>

</td>

</tr>

<tr>

<td>

<asp:Label ID="lblAddress" Text="地址: " runat="server"></asp:Label>

</td>

<td>

<asp:TextBox ID="txtAddress" Width="200px" runat="server"></asp:TextBox>

</td>

</tr>

<tr>

<td>

<asp:Label ID="lblContact" Text="联系电话: " runat="server"></asp:Label>

</td>

<td>

<asp:TextBox ID="txtContact" Width="200px" runat="server"></asp:TextBox>

</td>

</tr>

<tr>

<td>

<asp:Label ID="lblEmail" Text="电子邮箱: " runat="server"></asp:Label>

</td>

<td>

<asp:TextBox ID="txtEmail" Width="200px" runat="server"></asp:TextBox>

</td>

</tr>

<tr>

<td>

</td>

<td>

<asp:Button ID="btnSubmit" Text="提交" runat="server" />

<asp:Button ID="btnReset" Text="重置" runat="server" />

</td>

</tr>

</table>

</fieldset>

</div>

</form>

</body>

脚本代码:

复制代码 代码如下:

<head runat="server">

<title>Recipe2</title>

<script src="Scripts/jquery-1.4.1-vsdoc.js" type="text/javascript"></script>

<script type="text/javascript">

$(document).ready(function () {

$("input:text:first").focus(); // TextBox转换成html控件为<input type="text"/>

$("input:text").bind("keydown", function (e) {

if (e.which == 13) { // 获取Enter键值

e.preventDefault(); // 阻止表单按Enter键默认行为,防止按回车键提交表单

var nextIndex = $("input:text").index(this) + 1;

$("input:text")[nextIndex].focus();

}

});

$("#<%=btnReset.ClientID%>").click(function () {

$("form")[0].reset();

});

});

</script>

</head>

【ASP.NET jQuery 实例2 (表单中使用回车在TextBox之间向下移动)】相关文章:

javascript事件冒泡实例分析

优化RequireJS项目的相关技巧总结

让文字在页面上90度,180度翻转

jquery 构造函数在表单提交过程中修改数据

jquery实现点击label的同时触发文本框点击事件的方法

node.js微信公众平台开发教程

jQuery Timelinr实现垂直水平时间轴插件(附源码下载)

jQuery实现表格行上移下移和置顶的方法

在JavaScript的正则表达式中使用exec()方法

在textarea输入Tab

精品推荐
分类导航