-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 715 Bytes
/
Copy pathindex.html
File metadata and controls
35 lines (33 loc) · 715 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>jQuery-zm</title>
</head>
<body>
<style>
.test-red-font {
color: red;
}
</style>
<div id="one">div#one</div>
</div>
<div>
<p class="page">p.page:eq(0)</p>
<p class="page">p.page:eq(1)</p>
</div>
<form>
<input type="text" id="username" placeholder="username" value="input[type=text]#username">
<textarea id="address">textarea#address</textarea>
<button type="submit">button[type=submit]</button>
</form>
<script src="require.js"></script>
<script>
require.config({
baseUrl: "./src"
});
</script>
<script src="./src/jquery.js"></script>
</body>
</html>