通过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

相关文章

Python将博客内容html导出为Markdown格式

《Python将博客内容html导出为Markdown格式》Python将博客内容html导出为Markdown格式,通过博客url地址抓取文章,分析并提取出文章标题和内容,将内容构建成html,再转... 目录一、为什么要搞?二、准备如何搞?三、说搞咱就搞!抓取文章提取内容构建html转存markdown

在React中引入Tailwind CSS的完整指南

《在React中引入TailwindCSS的完整指南》在现代前端开发中,使用UI库可以显著提高开发效率,TailwindCSS是一个功能类优先的CSS框架,本文将详细介绍如何在Reac... 目录前言一、Tailwind css 简介二、创建 React 项目使用 Create React App 创建项目

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

Vue中组件之间传值的六种方式(完整版)

《Vue中组件之间传值的六种方式(完整版)》组件是vue.js最强大的功能之一,而组件实例的作用域是相互独立的,这就意味着不同组件之间的数据无法相互引用,针对不同的使用场景,如何选择行之有效的通信方式... 目录前言方法一、props/$emit1.父组件向子组件传值2.子组件向父组件传值(通过事件形式)方

css中的 vertical-align与line-height作用详解

《css中的vertical-align与line-height作用详解》:本文主要介绍了CSS中的`vertical-align`和`line-height`属性,包括它们的作用、适用元素、属性值、常见使用场景、常见问题及解决方案,详细内容请阅读本文,希望能对你有所帮助... 目录vertical-ali

Python实现自动化表单填写功能

《Python实现自动化表单填写功能》在Python中,自动化表单填写可以通过多种库和工具实现,本文将详细介绍常用的自动化表单处理工具,并对它们进行横向比较,可根据需求选择合适的工具,感兴趣的小伙伴跟... 目录1. Selenium简介适用场景示例代码优点缺点2. Playwright简介适用场景示例代码

浅析CSS 中z - index属性的作用及在什么情况下会失效

《浅析CSS中z-index属性的作用及在什么情况下会失效》z-index属性用于控制元素的堆叠顺序,值越大,元素越显示在上层,它需要元素具有定位属性(如relative、absolute、fi... 目录1. z-index 属性的作用2. z-index 失效的情况2.1 元素没有定位属性2.2 元素处

Python实现html转png的完美方案介绍

《Python实现html转png的完美方案介绍》这篇文章主要为大家详细介绍了如何使用Python实现html转png功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 1.增强稳定性与错误处理建议使用三层异常捕获结构:try: with sync_playwright(

Vue 调用摄像头扫描条码功能实现代码

《Vue调用摄像头扫描条码功能实现代码》本文介绍了如何使用Vue.js和jsQR库来实现调用摄像头并扫描条码的功能,通过安装依赖、获取摄像头视频流、解析条码等步骤,实现了从开始扫描到停止扫描的完整流... 目录实现步骤:代码实现1. 安装依赖2. vue 页面代码功能说明注意事项以下是一个基于 Vue.js

最新Spring Security实战教程之表单登录定制到处理逻辑的深度改造(最新推荐)

《最新SpringSecurity实战教程之表单登录定制到处理逻辑的深度改造(最新推荐)》本章节介绍了如何通过SpringSecurity实现从配置自定义登录页面、表单登录处理逻辑的配置,并简单模拟... 目录前言改造准备开始登录页改造自定义用户名密码登陆成功失败跳转问题自定义登出前后端分离适配方案结语前言