原生ajax的封装
get请求 post请求 有参无参都可以实现
返回数据类型,需要自己处理,返回字符串格式
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<input type="text" id='name'>
<input type="text" id='psd'>
<button id='btn'>登录</button>
<!--
$.ajax({
type:'get',
url:'06get.php',
data:{
name:name,
psd:psd
},
success:function(res){