20230510
今天学习ajax相关知识,明天准备复习连接池以及DButils。
<%-- Created by IntelliJ IDEA. User: 双休日 Date: 2023/5/9 Time: 19:58 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>test</title> <script type="text/javascript" src="js/jquery-3.6.4.min.js"></script> <SCRIPT type="text/javascript"> $(function () { var btn = $("#btn"); btn.click(function () { $.ajax({ url: '/test', type: 'post', data: 'id=1', dataType: 'text', success:function (data){ var text=$("#text"); text.before("<span>"+data+"</span>"); } }) }); }) </SCRIPT> </head> <body> ${str} <input id="text" type="text"><br> <input type="button" id="btn" value="提交"> </body> </html>

浙公网安备 33010602011771号