码迷,mamicode.com
首页 > 编程语言 > 详细

java web前端发送请求的4种方式

时间:2018-05-10 20:51:20      阅读:352      评论:0      收藏:0      [点我收藏+]

标签:Servle   day   demo   name   eth   表单   span   color   pre   

 

表单 action, 链接href,js 绑定按钮 ajax绑定标签

<h1>通过表单提交参数</h1>
        <form action="/day46_v1/ServletDemo01?method=addUser" method="post">
            用户名:<input type="text" name="username"/><button>提交</button>
        </form>
        <h1>通过链接提交参数</h1>
        <a href="/day46_v1/ServletDemo01?method=delUser&uid=003">删除</a>
        <h1>通过Ajax提交参数</h1>
        <input type="text" name="username"/><button onclick="fn()">发送请求</button>
        <h1>通过JS发送请求</h1>
        <button onclick="fm()">点击我向服务端发起请求</button>

 

java web前端发送请求的4种方式

标签:Servle   day   demo   name   eth   表单   span   color   pre   

原文地址:https://www.cnblogs.com/YangGC/p/9021550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!