实现点击按钮后,数据以表单形式提交至服务器,并接收来自服务器的返回数据。过程中页面不刷新。
html代码:
<html xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
<script src="./testajaxjs.js"></script>
<head>
</head>
<body>
<form id="form1">
<p>xingming:<input type="text" name="xingming"/></p>
<p>nianling:<input type="text" name="nianling"/></p>
</form>
<button type="button" id="mybt" οnclick="mysubmmit()">
ajax提交
</button>
</body>
</html>
js代码