-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathajax.live.html
75 lines (75 loc) · 2.38 KB
/
ajax.live.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Пример реализации «живого» AJAX посредством метода "load()"</title>
<link rel="profile" href="https://gmpg.org/xfn/11"/>
<link rel="shortcut icon" href="https://anton.shevchuk.name/favicon.ico"/>
<link rel="stylesheet" href="css/styles.css"/>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/code.js"></script>
<script>
$(function () {
$('article').on('click', 'a', function () {
let href = $(this).attr('href')
$.ajax({
url: href,
dataType: 'html',
success: function (data) {
$('article').html(
$('article', data).contents()
)
}
})
return false
})
})
</script>
<style>
article {
border: 1px dotted #ccc
}
</style>
</head>
<body>
<header>
<h1>Пример загрузки HTML и реализации «живого» AJAX</h1>
<h2>Используем метод <code>load()</code></h2>
</header>
<main>
<article>
<h2>Пробуем загрузить контент →</h2>
<p>Подгрузим <a href="index.html">главную страницу</a></p>
<p>И попробуем перейти по ссылкам на ней</p>
</article>
</main>
<footer>
© <a href="https://anton.shevchuk.name/jquery-book/">jQuery for beginners</a>
</footer>
<aside>
<nav>
<a href="ajax.script.html" title="go back" rel="prev">Back</a>
<a href="index.html#60" title="back to Index" rel="index">Index</a>
<a href="#" title="reload" onclick="window.location.reload();return false">Reload</a>
<a href="ajax.jsonp.html" title="go next" rel="next">Next</a>
</nav>
<hr/>
<code><em>// run, after document ready</em>
$(<span>"article"</span>).on(<span>"click"</span>, <span>"a"</span>,
function(){
let href = $(this).attr(<span>"href"</span>);
$.ajax({
url: href,
dataType: <span>"html"</span>,
success:function(data){
$(<span>"article"</span>).html(
$(<span>"article"</span>, data).contents()
);
}
});
return false;
})</code>
</aside>
</body>
</html>