首页 前端知识 【JQuery】发送get请求

【JQuery】发送get请求

2024-08-12 10:08:28 前端知识 前端哥 481 899 我要收藏

1  问题

使用JQuery如何发送get请求?

2  解决方法

代码实现:点击button,获取input中的内容,发送get请求

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="../css/index.css" />
<script src="../js/jquery.min.js"></script>
<script>
$(document).ready(function () {
$(".mid span button").click(function () {
param = $(".mid span input").val()
$.ajax({
url: "",
method:"GET",
data:{url:param},
success:function (data) {
console.log(data);
}
});
});
});
</script>
</head>
<body>
</body>
</html>
复制

转载请注明出处或者链接地址:https://www.qianduange.cn//article/15411.html
标签
评论
发布的文章

安装Nodejs后,npm无法使用

2024-11-30 11:11:38

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!