-
Notifications
You must be signed in to change notification settings - Fork 35
/
ajax.script.html
44 lines (44 loc) · 1.79 KB
/
ajax.script.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
<!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>Пример динамической загрузки скриптов используя "getScript()"</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>
</head>
<body>
<header>
<h1>Пример динамической загрузки скрипта</h1>
<h2>Метод <code>getScript()</code></h2>
</header>
<main>
<article>
<h3>Пробуем загрузить JavaScript файл по клику →</h3>
<blockquote>Код подгружаемого скрипта доступен по ссылке <a href="/ajax/example.js">/ajax/example.js</a></blockquote>
</article>
</main>
<footer>
© <a href="https://anton.shevchuk.name/jquery-book/">jQuery for beginners</a>
</footer>
<aside>
<nav>
<a href="ajax.datatype.html" title="go prev" rel="prev">Prev</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.live.html" title="go next" rel="next">Next</a>
</nav>
<hr/>
<code contenteditable="true"><em>// AJAX is easy</em>
$.getScript(<span>'ajax/example.js'</span>, function(){
$(<span>'article'</span>)
.find(<span>'p'</span>)
.css(<span>'color'</span>,<span>'green'</span>);
})</code>
<button type="button">Run Code</button>
</aside>
</body>
</html>