Blogger Information
Blog 29
fans 1
comment 1
visits 24864
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
post请求 2018-4-10
谦谦允水的博客
Original
579 people have browsed it

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>post</title>
	<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>

</head>
<body>
	<p>
		<label for="email">email</label>
		<input type="email" id="email">
	</p>
	<p>
		<label for="password">password</label>
		<input type="password" id="password">
	</p>
	<button>提交</button>
	<span></span>
</body>
<script>
  $("button").click(function(){
 	$.post('1.php',{
		'email':$("#email").val(),
		'password':$("#password").val()
	},
	function(res){
		$("span").text(res);
	}) 	
  })

</script>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

实例

<?php 
	$a=$_POST['email'];
	$b=$_POST['password'];
	echo $a,$b;
 ?>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post