jQuery异步提交form表单

原文地址为: jQuery异步提交form表单

jQuery异步提交form表单

 

这个其实挺简单的,只是一开始我想错了,一开始我打算用jQuery +jQuery.form插件来做,其实不必的,只需要jQuery插件就可以了。

首先,在jsp页面中导入jQuery,

<script type="text/javascript"src="<%=request.getContextPath()%>/js/jquery-1.4.2.js"></script>

然后在jQuery的ready方法中定义form提交时的动作就可以了,

$(document).ready(function() {

// 使用 jQuery异步提交表单

$('#editRealMsgForm').submit(function() {

jQuery.ajax({

url:'editRealMsg.eri',

data:$('#editRealMsgForm').serialize(),

type:"POST",

beforeSend:function()

{  

$('#submitButton').hide();

$('#editRealMsgImg').show();

},

success:function()

{

$('#editRealMsgImg').hide();

$('#modifyButton').show();

$('#realName').attr("disabled","true");

$('#tel').attr("disabled","true");

}

});

returnfalse;

});

});

现在这个form就绑定好jQuery封装的异步提交方法了,简单吧!

 

 

 

 

=====================================================

the secondmethod

    no input id

=======================================================

Jquery来对form表单提交(mvc方案)

Jquery来对form表单提交,下面是一个form表单,里面没有action字段,我们来用Jquery注册事件进行提交,
 

<form method="post"id="documentForm">
   <input type="hidden" id="hidId" name="hidId"value="<%=Request.QueryString["id"]%>" />
   <input type="hidden" id="hidAction" name="hidAction"value="<%=Request.QueryString["action"]%>" />
   <divclass="fieldbody">        
       <div class="tagsiglebody">
           <table class="create">
               <tr>
                   <th class="w100">
                       关键字:
                   </th>
                   <td class="nes">
                       <input type="text" id="txtKeyword" name="txtKeyword"class="txt w250" value="<%=ViewData.eval_r("keywords") %>"
                           isnull="0" />
                       关键字请用逗号隔开
                   </td>
               </tr>              


转载请注明本文地址: jQuery异步提交form表单
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值