码迷,mamicode.com
首页 > Web开发 > 详细

jQuery-Ajax请求Json数据并加载在前端页面,附视频教程讲解!

时间:2019-11-19 14:09:11      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:demo   视频   数据源   code   ajax技术   jquer   license   ref   应用   

Ajax技术应用广泛,这种异步加载技术,无需刷新网页即可更新网站内容,全局或者局部均可,所以大家应该学会这种技巧,把技术用上来。

创建demo.json文件,用来做数据源:

{
????"title":"Segmentfault",
????"url":"https://segmentfault.com"
}

创建index.html文件,前端页面并加载数据

<!DOCTYPE html>
<html>
<head>
????<meta charset="utf-8">
????<title>jQuery - Ajax - Json</title>
????<script src="http://code.jquery.com/jquery-3.3.1.min.js"></script>
????<script>
????????$(function(){
????????????$("button").click(function(){
????????????????$.ajax({
????????????????????type:"GET",
????????????????????url:"demo.json",
????????????????????dataType:"json",
????????????????????success:function(data){
????????????????????????$("#title").text(data.title);
????????????????????????$("#url").text(data.url);
????????????????????}
????????????????})
????????????})
????????})
????</script>
</head>
<body>
????<button name="button" type="button">加载数据</button>
????<h2>title:<span id="title"></span></h2>
????<h2>url:<span id="url"></span></h2>
</body>
</html>

页面中需要引入jQuery库
视频教程:https://pan.baidu.com/s/1vpfT...

jQuery-Ajax请求Json数据并加载在前端页面,附视频教程讲解!

标签:demo   视频   数据源   code   ajax技术   jquer   license   ref   应用   

原文地址:https://www.cnblogs.com/jlfw/p/11888647.html

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