質問編集履歴

2

詳細

2017/04/23 15:25

投稿

goforward
goforward

スコア705

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,114 @@
1
+ 左の「おいしいごはん」をクリックしたら右のhelloのページに行きたい
2
+
3
+ どこがいけないのでしょうか?同じ階層にあります。ひとつしたは/で上は..ですが
4
+
5
+ ![![イメージ説明](be533ccf287284a12a99c4a350292ead.jpeg)]
6
+
7
+
8
+
9
+ ```html
10
+
11
+ <!DOCTYPE html>
12
+
13
+ <html lang="ja">
14
+
15
+ <head>
16
+
17
+ <meta charset="utf8">
18
+
19
+ <title>はじめてのHTML</title>
20
+
21
+
22
+
23
+ </head>
24
+
25
+ <body>
26
+
27
+
28
+
29
+ <article>
30
+
31
+ <h1 a href="index5.html">おいしいごはん</a></h1>
32
+
33
+ <img src="ly.jpg" width="150" height="150" alt="ly jonaitis"></p>
34
+
35
+ </article>
36
+
37
+
38
+
39
+
40
+
41
+ </body>
42
+
43
+ </html
44
+
45
+
46
+
1
- 今までは
47
+ ```
48
+
49
+
50
+
51
+ ```html
52
+
53
+ <!DOCTYPE html>
54
+
55
+ <!-- saved from url=(0065)file:///C:/Users/eseb759bodeh/Desktop/html%20practice/index5.html -->
56
+
57
+ <html lang="ja"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
58
+
59
+
60
+
61
+ <title>CSS Practice</title>
62
+
63
+ <link rel="stylesheet" href="file:///C:/Users/eseb759bodeh/Desktop/html%20practice/default.css">
64
+
65
+ </head>
66
+
67
+ <body>
68
+
69
+
70
+
71
+ <div class="container">
72
+
73
+ <div class="box gray">
74
+
75
+ Hello Hello Hello Hello Hello Hello
76
+
77
+ </div>
78
+
79
+ <div class="box silver">
80
+
81
+ Hello Hello Hello
82
+
83
+ </div>
84
+
85
+ </div>
86
+
87
+ <div class="box orange">
88
+
89
+ Hello Hello Hello Hello Hello Hello
90
+
91
+ </div>
92
+
93
+
94
+
95
+
96
+
97
+ </body>
98
+
99
+ </html>
100
+
101
+ ```
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
2
112
 
3
113
  ```html
4
114
 

1

cha

2017/04/23 15:25

投稿

goforward
goforward

スコア705

test CHANGED
File without changes
test CHANGED
@@ -13,3 +13,101 @@
13
13
 
14
14
 
15
15
  宜しくお願い致します。
16
+
17
+ ![イメージ説明](00c0ccdd06bba141f3d221bc895d543b.jpeg)
18
+
19
+ たとえば左のこんにちはをクリックしたら 右のページへ移動するにはどうしたらよろしいでしょうか?
20
+
21
+
22
+
23
+
24
+
25
+ ```html
26
+
27
+ <!DOCTYPE html>
28
+
29
+ <html lang="ja">
30
+
31
+ <head>
32
+
33
+ <meta charset="utf8">
34
+
35
+ <meta name="description" content="初めてのHTML文書です。">
36
+
37
+ <title>はじめてのHTML</title>
38
+
39
+ <link rel="shortcut icon" href="favicon.ico">
40
+
41
+ </head>
42
+
43
+ <body>
44
+
45
+ <p>こんにちは!</p>
46
+
47
+ </body>
48
+
49
+ </html>
50
+
51
+ ```
52
+
53
+
54
+
55
+ ```htmlコード
56
+
57
+ <!DOCTYPE html>
58
+
59
+ <html lang="ja">
60
+
61
+ <head>
62
+
63
+ <meta charset="utf-8">
64
+
65
+ <title>jQueryの練習</title>
66
+
67
+ </head>
68
+
69
+ <body>
70
+
71
+ <p>jQueryの練習</p>
72
+
73
+
74
+
75
+ <button>もっと読む</button>
76
+
77
+ <div id="result"></div>
78
+
79
+
80
+
81
+ <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
82
+
83
+ <script>
84
+
85
+ $(function() {
86
+
87
+
88
+
89
+ // Ajax
90
+
91
+ // Asynchronous JavaScript + XML
92
+
93
+ // サーバーと通信 + ページの書き換え
94
+
95
+
96
+
97
+ $('button').click(function() {
98
+
99
+ $('#result').load('more.html');
100
+
101
+ });
102
+
103
+
104
+
105
+ });
106
+
107
+ </script>
108
+
109
+ </body>
110
+
111
+ </html>
112
+
113
+ ```