var fdata=$("form").serialize();  //获取表单的值
   $.post("tiaozhuan.jsp", fdata, function (result) {//无刷新提交表单  
     alert(result);
   })