回答編集履歴
1
追加
answer
CHANGED
@@ -3,4 +3,11 @@
|
|
3
3
|
$(function(){
|
4
4
|
$('#div1').append('<img src="picture/img01.jpg" alt="" />');
|
5
5
|
});
|
6
|
+
```
|
7
|
+
|
8
|
+
あと、jQueryは読み込めていますか?
|
9
|
+
```HTML
|
10
|
+
<head>
|
11
|
+
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
|
12
|
+
</head>
|
6
13
|
```
|