通过AJAX和PHP,提交JQuery Mobile表单(两篇)

2024-06-08 15:32

本文主要是介绍通过AJAX和PHP,提交JQuery Mobile表单(两篇),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

File name: callajax.php
[php] view plaincopy<?php  $firstName = $_POST[firstName];  $lastName = $_POST[lastName];  echo("First Name: " . $firstName . " Last Name: " . $lastName);  ?>  File name: index.php
[html] view plaincopy<!DOCTYPE html>  <html>  <head>  <title>Submit a form via AJAX</title>  <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4/jquery.mobile-1.0a4.min.css" />  <script src="http://code.jquery.com/jquery-1.5.2.min.js"></script>  <script src="http://code.jquery.com/mobile/1.0a4/jquery.mobile-1.0a4.min.js"></script>  </head>  <body>  <script>  function onSuccess(data, status)  {  data = $.trim(data);  $("#notification").text(data);  }  function onError(data, status)  {  // handle an error  }          $(document).ready(function() {  $("#submit").click(function(){  var formData = $("#callAjaxForm").serialize();  $.ajax({  type: "POST",  url: "callajax.php",  cache: false,  data: formData,  success: onSuccess,  error: onError  });  return false;  });  });  </script>  <!-- call ajax page -->  <div data-role="page" id="callAjaxPage">  <div data-role="header">  <h1>Call Ajax</h1>  </div>  <div data-role="content">  <form id="callAjaxForm">  <div data-role="fieldcontain">  <label for="firstName">First Name</label>  <input type="text" name="firstName" id="firstName" value=""  />  <label for="lastName">Last Name</label>  <input type="text" name="lastName" id="lastName" value=""  />  <h3 id="notification"></h3>  <button data-theme="b" id="submit" type="submit">Submit</button>  </div>  </form>  </div>  <div data-role="footer">  <h1>GiantFlyingSaucer</h1>  </div>  </div>  </body>  </html>  +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
jQuery mobile 表单提交http://blog.csdn.net/tjpu_lin/article/details/28394253最近在做手机页面用jQuery mobile开发,在用到form表单提交到时遇到了问题。后台是用servlet进行处理的,想通过Servlet里面的重定向进行页面跳转发现在手机上根本没有用,出现errorpage提示信息。查询网上资料以及jQuery mobile API得知 jQuery mobile表单提交默认是ajax提交,所以页面跳转写在servlet里面根本就不会实现页面跳转功能。于是我按照教程在form里面加了  data-ajax=“false”这一属性,发现别说是页面跳转不行,就连后台的数据库操作都做不了,报了500错误。想了好久既然用ajax提交,那么就用ajax进行页面跳转
[html] view plaincopy在CODE上查看代码片派生到我的代码片<script type="text/javascript">  $(document).ready(function () {  $("#submitbtn").click(function(){  cache: false,  $.ajax({  type: "POST",  url: "feedback",  data: $('#feedbackform').serialize(),  success:function(data){  $.mobile.changePage("success.html");  }  });  });  });  </script>  [html] view plaincopy在CODE上查看代码片派生到我的代码片<form method="post" id="feedbackform">  t;span style="white-space:pre">              </span>//相关表单元素  <input type="button" id="submitbtn" value="提交">  </form>  注意的是js里面的data
[html] view plaincopy在CODE上查看代码片派生到我的代码片$('#feedbackform').serialize()  是必须要有的,不然servlet里面用requset.getParameter接受的数据是null,ajax和后台成功交互后用changePage跳转到成功后显示的页面。
</pre><pre code_snippet_id="1849295" snippet_file_name="blog_20160824_1_2775332" name="code" class="html">
<dt style="list-style: none; word-break: break-all; word-wrap: break-word; margin: 0px; padding: 4px 0px 0px 7px; float: left; width: 77px; height: 60px; font-family: Verdana, 'Lucida Grande', Arial, Helvetica, sans-serif;"><a target=_blank href="http://my.csdn.net/" style="list-style: none; text-decoration: none; word-break: break-all; word-wrap: break-word; color: rgb(59, 89, 152); margin: 0px; padding: 0px;"><img src="http://avatar.csdn.net/2/A/1/3_u011447828.jpg" alt="u011447828" style="list-style: none; word-break: break-all; word-wrap: break-word; border: none; margin: 0px; padding: 0px; width: 48px; height: 48px;" /></a></dt><dd style="list-style: none; word-break: break-all; word-wrap: break-word; margin: 0px 0px 0px -10px; padding: 4px 0px 0px; float: left; width: 500px; font-family: Verdana, 'Lucida Grande', Arial, Helvetica, sans-serif;"><ul style="list-style: none; word-break: break-all; word-wrap: break-word; margin: 0px; padding: 0px;"><li class="user_name" style="list-style: none; word-break: break-all; word-wrap: break-word; margin: 0px; padding: 0px; font-stretch: normal; font-size: 14px; line-height: 24px; font-family: Arial, Helvetica, sans-serif;"><a target=_blank href="http://my.csdn.net/" class="user_name" style="list-style: none; text-decoration: none; word-break: break-all; word-wrap: break-word; color: rgb(68, 68, 68); margin: 0px 1em 0px 0px; padding: 0px; font-weight: bold; font-stretch: normal;">afterrains</a><span style="list-style: none; word-break: break-all; word-wrap: break-word; margin: 0px; padding: 0px; color: rgb(58, 156, 211);">别在熬夜了!</span></li><li class="feed_link" style="list-style: none; word-break: break-all; word-wrap: break-word; margin: 0px 0px 0px -5px; padding: 0px; color: rgb(170, 170, 170); font-stretch: normal; line-height: 24px; font-family: Arial, Helvetica, sans-serif;"><a target=_blank href="http://my.csdn.net/" style="list-style: none; text-decoration: none; word-break: break-all; word-wrap: break-word; color: rgb(7, 81, 154); margin: 0px 6px; padding: 0px;">个人主页</a>|<a target=_blank href="http://blog.csdn.net/u011447828" style="list-style: none; text-decoration: none; word-break: break-all; word-wrap: break-word; color: rgb(7, 81, 154); margin: 0px 6px; padding: 0px;">我的博客</a></li></ul></dd>

这篇关于通过AJAX和PHP,提交JQuery Mobile表单(两篇)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1042576

相关文章

前端如何通过nginx访问本地端口

《前端如何通过nginx访问本地端口》:本文主要介绍前端如何通过nginx访问本地端口的问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、nginx安装1、下载(1)下载地址(2)系统选择(3)版本选择2、安装部署(1)解压(2)配置文件修改(3)启动(4)

HTML中meta标签的常见使用案例(示例详解)

《HTML中meta标签的常见使用案例(示例详解)》HTMLmeta标签用于提供文档元数据,涵盖字符编码、SEO优化、社交媒体集成、移动设备适配、浏览器控制及安全隐私设置,优化页面显示与搜索引擎索引... 目录html中meta标签的常见使用案例一、基础功能二、搜索引擎优化(seo)三、社交媒体集成四、移动

HTML input 标签示例详解

《HTMLinput标签示例详解》input标签主要用于接收用户的输入,随type属性值的不同,变换其具体功能,本文通过实例图文并茂的形式给大家介绍HTMLinput标签,感兴趣的朋友一... 目录通用属性输入框单行文本输入框 text密码输入框 password数字输入框 number电子邮件输入编程框

HTML img标签和超链接标签详细介绍

《HTMLimg标签和超链接标签详细介绍》:本文主要介绍了HTML中img标签的使用,包括src属性(指定图片路径)、相对/绝对路径区别、alt替代文本、title提示、宽高控制及边框设置等,详细内容请阅读本文,希望能对你有所帮助... 目录img 标签src 属性alt 属性title 属性width/h

SpringBoot+Redis防止接口重复提交问题

《SpringBoot+Redis防止接口重复提交问题》:本文主要介绍SpringBoot+Redis防止接口重复提交问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录前言实现思路代码示例测试总结前言在项目的使用使用过程中,经常会出现某些操作在短时间内频繁提交。例

CSS3打造的现代交互式登录界面详细实现过程

《CSS3打造的现代交互式登录界面详细实现过程》本文介绍CSS3和jQuery在登录界面设计中的应用,涵盖动画、选择器、自定义字体及盒模型技术,提升界面美观与交互性,同时优化性能和可访问性,感兴趣的朋... 目录1. css3用户登录界面设计概述1.1 用户界面设计的重要性1.2 CSS3的新特性与优势1.

HTML5 中的<button>标签用法和特征

《HTML5中的<button>标签用法和特征》在HTML5中,button标签用于定义一个可点击的按钮,它是创建交互式网页的重要元素之一,本文将深入解析HTML5中的button标签,详细介绍其属... 目录引言<button> 标签的基本用法<button> 标签的属性typevaluedisabled

HTML5实现的移动端购物车自动结算功能示例代码

《HTML5实现的移动端购物车自动结算功能示例代码》本文介绍HTML5实现移动端购物车自动结算,通过WebStorage、事件监听、DOM操作等技术,确保实时更新与数据同步,优化性能及无障碍性,提升用... 目录1. 移动端购物车自动结算概述2. 数据存储与状态保存机制2.1 浏览器端的数据存储方式2.1.

基于 HTML5 Canvas 实现图片旋转与下载功能(完整代码展示)

《基于HTML5Canvas实现图片旋转与下载功能(完整代码展示)》本文将深入剖析一段基于HTML5Canvas的代码,该代码实现了图片的旋转(90度和180度)以及旋转后图片的下载... 目录一、引言二、html 结构分析三、css 样式分析四、JavaScript 功能实现一、引言在 Web 开发中,

CSS place-items: center解析与用法详解

《CSSplace-items:center解析与用法详解》place-items:center;是一个强大的CSS简写属性,用于同时控制网格(Grid)和弹性盒(Flexbox)... place-items: center; 是一个强大的 css 简写属性,用于同时控制 网格(Grid) 和 弹性盒(F